Why i can´t do this?
x550(:,2)(x550(:,2)<200)=nan
??? Error: ()-indexing must appear last in an index expression.
Best Regards

 Réponse acceptée

Walter Roberson
Walter Roberson le 9 Sep 2011

0 votes

Because MATLAB does not allow () subscripting to be chained.
x550(x550(:,2)<200,2) = nan;

Plus de réponses (1)

John D'Errico
John D'Errico le 9 Sep 2011

0 votes

Because it is invalid MATLAB syntax. Wanting to do something does not make it possible.

Community Treasure Hunt

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

Start Hunting!

Translated by