getting a parse error at '='
10 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
fft_values[abs(fft_values) < threshold] = 0;
I am getting error as: parse error at '='. How should i rectify it?
0 Commenti
Risposta accettata
per isakson
il 4 Mar 2014
Modificato: per isakson
il 4 Mar 2014
Try
fft_values( abs(fft_values) < threshold ) = 0;
Matlab uses "()"
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Transforms in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!