Show older comments
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
Accepted Answer
More Answers (1)
Rick Rosson
on 5 Jan 2012
Please try:
dt = 0.001;
Fs = 1/dt;
Fnyq = Fs/2;
Fco = fm + bw;
wn = Fco/Fnyq;
HTH.
6 Comments
mohamed al-asklany
on 6 Jan 2012
Rick Rosson
on 6 Jan 2012
Try it.
Walter Roberson
on 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
on 6 Jan 2012
bw = bandwidth (in hertz)
Fc is not needed to compute wn
Rick Rosson
on 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
on 6 Jan 2012
You should also make sure that the following conditions are true:
bw << fm
and
fm << fc
Categories
Find more on Propagation and Channel Models in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!