이전 댓글 표시
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!