Ältere Kommentare anzeigen
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
Akzeptierte Antwort
Weitere Antworten (1)
Rick Rosson
am 5 Jan. 2012
Please try:
dt = 0.001;
Fs = 1/dt;
Fnyq = Fs/2;
Fco = fm + bw;
wn = Fco/Fnyq;
HTH.
6 Kommentare
mohamed al-asklany
am 6 Jan. 2012
Rick Rosson
am 6 Jan. 2012
Try it.
Walter Roberson
am 6 Jan. 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
am 6 Jan. 2012
bw = bandwidth (in hertz)
Fc is not needed to compute wn
Rick Rosson
am 6 Jan. 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
am 6 Jan. 2012
You should also make sure that the following conditions are true:
bw << fm
and
fm << fc
Kategorien
Mehr zu Propagation and Channel Models finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!