You are on page 1of 1

https://www.youtube.com/watch?

v=R8Nx8OOO9_s&list=PL-DGQUrLA3SFhm4QJdRzeHR9iSBu9I
Z4d&index=4
http://www.codemiles.com/matlab-examples/expectation-maximization-em-algorithm-t
7352.html
http://www.csupomona.edu/~zaliyazici/ece308/MatLab.html
http://www.123mylist.com/2012/05/plot-continuous-and-discrete-time-wave.html
t = [0:1:4000];
fs = 4500;
Input1 = sin((2*pi*t)/fs);
quant=max(Input1)/(2^7-1)
y=round(Input1/quant)
signe=uint8((sign(y)'+1)/2)
out=[signe dec2bin(abs(y),7)] % The first bit represents the sign of the number

You might also like