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

13 次查看(过去 30 天)
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 个评论
Image Analyst
Image Analyst 2013-5-11
编辑:Image Analyst 2013-5-11
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 2013-5-11
编辑:Azzi Abdelmalek 2013-5-11
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.

请先登录,再进行评论。

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-5-11
编辑:Azzi Abdelmalek 2013-5-11
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Modulation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by