필터 지우기
필터 지우기

getting a parse error at '='

조회 수: 1 (최근 30일)
ankita
ankita 2014년 3월 4일
댓글: ankita 2014년 3월 4일
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