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