what to do to run dsp.SpectrumAnalyzer?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
nazmul islam
el 30 de Mzo. de 2017
Respondida: Greg Dionne
el 30 de Mzo. de 2017
Hello, I wonder why the following code showing the error (i.e. Undefined variable "dsp" or class "dsp.SpectrumAnalyzer".)?
fs = 100;t = (0:1/fs:100)'; fc = 10; x = sin(2*pi*t); ydouble = ammod(x,fc,fs);ysingle = ssbmod(x,fc,fs); sa = dsp.SpectrumAnalyzer('SampleRate',fs,'PlotAsTwoSidedSpectrum',false,'YLimits',[-60 40]); step(sa,ydouble)
Regards
0 comentarios
Respuesta aceptada
Greg Dionne
el 30 de Mzo. de 2017
You might not have the DSP System Toolbox installed.
Try using pwelch() or periodogram()
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Spectral Analysis 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!