Info
この質問は閉じられています。 編集または回答するには再度開いてください。
separating a part of plot from an original fft plot
1 回表示 (過去 30 日間)
古いコメントを表示
i have a fft plot of an audio file over the range 0 to 3000hz. now i want to separate the 1000 to 2000 hz part of the plot into a diff variable. how to do that...?????
thanks in advance
0 件のコメント
回答 (1 件)
Tom
2012 年 3 月 9 日
you can use the greater than/ less than symbols to do this: say your frequency data is stored as X, and your FFT data is stored as Y.
Z=Y(X>=1000 & X<=2000)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!