filter
古いコメントを表示
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
採用された回答
その他の回答 (1 件)
Rick Rosson
2012 年 1 月 5 日
Please try:
dt = 0.001;
Fs = 1/dt;
Fnyq = Fs/2;
Fco = fm + bw;
wn = Fco/Fnyq;
HTH.
6 件のコメント
mohamed al-asklany
2012 年 1 月 6 日
Rick Rosson
2012 年 1 月 6 日
Try it.
Walter Roberson
2012 年 1 月 6 日
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
2012 年 1 月 6 日
bw = bandwidth (in hertz)
Fc is not needed to compute wn
Rick Rosson
2012 年 1 月 6 日
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
2012 年 1 月 6 日
You should also make sure that the following conditions are true:
bw << fm
and
fm << fc
カテゴリ
ヘルプ センター および File Exchange で Propagation and Channel Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!