getting a parse error at '='
1 回表示 (過去 30 日間)
古いコメントを表示
fft_values[abs(fft_values) < threshold] = 0;
I am getting error as: parse error at '='. How should i rectify it?
0 件のコメント
採用された回答
per isakson
2014 年 3 月 4 日
編集済み: per isakson
2014 年 3 月 4 日
Try
fft_values( abs(fft_values) < threshold ) = 0;
Matlab uses "()"
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!