Mostrar comentarios más antiguos
in butter(1,wn) i know wn is normal frequency =(cut off/nyq.freq) in amplitude modulation what will be wn=? if carrier freq=fc and i calulat 0:.001:1 sample and message freq fm
Respuesta aceptada
Más respuestas (1)
Rick Rosson
el 5 de En. de 2012
Please try:
dt = 0.001;
Fs = 1/dt;
Fnyq = Fs/2;
Fco = fm + bw;
wn = Fco/Fnyq;
HTH.
6 comentarios
mohamed al-asklany
el 6 de En. de 2012
Rick Rosson
el 6 de En. de 2012
Try it.
Walter Roberson
el 6 de En. de 2012
Fs - sampling frequency
Fnyq - nyquist frequency
fm - message frequency
Fco - cutoff frequency
wn - wn to use for butter()
I have not figured out what bw is, or where fc fits in.
Rick Rosson
el 6 de En. de 2012
bw = bandwidth (in hertz)
Fc is not needed to compute wn
Rick Rosson
el 6 de En. de 2012
The idea of bandwidth is that the message has a spectrum that extends across a range of frequencies centered at f = fm. You can assume that the range is [ fm-bw ... fm+bw ].
Rick Rosson
el 6 de En. de 2012
You should also make sure that the following conditions are true:
bw << fm
and
fm << fc
Categorías
Más información sobre Propagation and Channel Models en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!