Is the X-axis of my code in radians per sample
1 回表示 (過去 30 日間)
古いコメントを表示
Is the X-axis of my code in radians per sample if it is not normalized that is between 0 and 1 for the following code below,
c_f=freqz(c_w); figure plot(abs(c_f))
0 件のコメント
回答 (1 件)
Abhishek Gupte
2011 年 12 月 11 日
In case of your code, the X axis of the plot is just the index of the frequency response vector. If c_f is a 8000x1 vector, then the X axis of the plot will go from 0 to 8000.
I think it would be better if you were to use FREQZ to return both the frequency response and the corresponding frequency vector:
[ c_f , w ] = freqz( c_w );
plot( w , abs( c_f ) );
The X axis now will be in radians per sample.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Filter Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!