fft_values[abs(fft_values) < threshold] = 0;
I am getting error as: parse error at '='. How should i rectify it?

 採用された回答

per isakson
per isakson 2014 年 3 月 4 日
編集済み: per isakson 2014 年 3 月 4 日

0 投票

Try
fft_values( abs(fft_values) < threshold ) = 0;
Matlab uses "()"

その他の回答 (0 件)

タグ

質問済み:

2014 年 3 月 4 日

コメント済み:

2014 年 3 月 4 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by