How to Convert an Input Sine Wave into an 8-Bit Digital Signal
19 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ryan
am 11 Mai 2013
Kommentiert: Walter Roberson
am 21 Okt. 2022
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 Kommentare
Image Analyst
am 11 Mai 2013
Bearbeitet: Image Analyst
am 11 Mai 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
am 11 Mai 2013
Bearbeitet: Azzi Abdelmalek
am 11 Mai 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.
Akzeptierte Antwort
Azzi Abdelmalek
am 11 Mai 2013
Bearbeitet: Azzi Abdelmalek
am 11 Mai 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
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Modulation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!