how to convert digital data into analog data using matlab code?
37 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sivakumaran Chandrasekaran
el 25 de Oct. de 2013
Respondida: Walter Roberson
el 18 de Abr. de 2020
how to convert digital data into analog data using matlab code? and vice versa... i.e., converting back analog data into digital data?
2 comentarios
Azzi Abdelmalek
el 25 de Oct. de 2013
What is the range of your analog signal, how many bits are you sing?
Sharada Reddy
el 31 de En. de 2017
can you tell me how is the DAC in matlab works..? Any codes to convert digital into analog signal
Respuesta aceptada
Azzi Abdelmalek
el 25 de Oct. de 2013
Editada: Azzi Abdelmalek
el 25 de Oct. de 2013
U=10; % range signal from 0 to 10
n=3 % number of bits
q=U/(2^n-1) % quantization interval
t=0:0.1:10; % your time vector
y=abs(10*sin(t)); % your signal
% -------convert to a digital signal yd-----------
a=fix(y/q);
yd=dec2bin(a,n)
% ------you can calculate the signal yq ----------
yq=a*q
%-------------------------------------------------
plot(t,y,'r')
hold on
plot(t,yq,'g')
hold off
2 comentarios
Richard Lyons
el 20 de En. de 2017
Mr. Abdelmalek's code sure looks like analog to digital conversion to me. What the original poster wanted was digital to analog conversion!
Más respuestas (2)
po-wei huang
el 18 de Abr. de 2020
You can try this sample. Here contain DAC procedure. (But quantizing is skipped.)
0 comentarios
Walter Roberson
el 18 de Abr. de 2020
The only built in facility for converting digital to analog are the ones that output to audio devices such as sound() or audiodevicewriter, unless you want to count graphics operators. Or if you want to include the ability to set and clear DTR on a serial port. Everything else needs to talk to a digital to analog converter.
0 comentarios
Ver también
Categorías
Más información sobre Analog Filters en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!