Set nan values
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Why i can´t do this?
x550(:,2)(x550(:,2)<200)=nan
??? Error: ()-indexing must appear last in an index expression.
Best Regards
0 Commenti
Risposta accettata
Walter Roberson
il 9 Set 2011
Because MATLAB does not allow () subscripting to be chained.
x550(x550(:,2)<200,2) = nan;
Più risposte (1)
John D'Errico
il 9 Set 2011
Because it is invalid MATLAB syntax. Wanting to do something does not make it possible.
0 Commenti
Vedere anche
Categorie
Scopri di più su NaNs 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!