How to Convert an Input Sine Wave into an 8-Bit Digital Signal

112 views (last 30 days)
Hi, I am working on a project and I am not sure how to convert the input signal from an analog to an 8-bit digital signal. Here is my code:
t = [0:1:4000]; % Number of Samples
fs = 4500; % Sampled Frequency
Input = sin((2*pi*t)/fs); % Analog Sine Wave
subplot(2,1,1)
plot(Input) % Analog Sine Wave Plot
grid on
My question is how to convert this sine wave sampled at 4500 Hz into a digital 8-bit signal.
  4 Comments
Image Analyst
Image Analyst on 11 May 2013
Edited: Image Analyst on 11 May 2013
And not analog either. But it is in a digital computer so it's quantized/digitized to the smallest amount that the computer can handle (is that eps?) Perhaps you have a different definition of digitized than me. Because he is taking samples at certain times, the sine wave output will also take on certain discrete values, not uniformly spaced along the y axis. But even though his signal may take on only 4001 discrete values, it is still digitized at 64 bits. Of course he can convert that to 8 bits (256 discrete values) if he wants. An analog signal would be continuous, like the voltage you'd get from measuring an electronic circuit (ignoring the quantization you get at the charge of a single electron). That said, I'm just being picky about the definitions - I actually think he really did want your answer.
Azzi Abdelmalek
Azzi Abdelmalek on 11 May 2013
Edited: Azzi Abdelmalek on 11 May 2013
The real ADC (Analog to Digital Converter) works with 8,10,12 or 16 bits, rarely with 32 bits (It depends on the sample frequency wich causes noise). We can consider that a digitized number at 64 bits, with a very small sample time, represent an analog signal, which can be sampled and quantized again at 8 bits for example.
The Simulink simulate continuous and discrete systems, both are represented by 64 bits digitized data.

Sign in to comment.

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 11 May 2013
Edited: Azzi Abdelmalek on 11 May 2013
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

More Answers (0)

Categories

Find more on Signal Generation, Manipulation, and Analysis in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!