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?

采纳的回答

per isakson
per isakson 2014-3-4
编辑:per isakson 2014-3-4
Try
fft_values( abs(fft_values) < threshold ) = 0;
Matlab uses "()"

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by