getting a parse error at '='

10 次查看(过去 30 天)
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
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!

Translated by