Set nan values
1 回表示 (過去 30 日間)
古いコメントを表示
Why i can´t do this?
x550(:,2)(x550(:,2)<200)=nan
??? Error: ()-indexing must appear last in an index expression.
Best Regards
0 件のコメント
採用された回答
Walter Roberson
2011 年 9 月 9 日
Because MATLAB does not allow () subscripting to be chained.
x550(x550(:,2)<200,2) = nan;
その他の回答 (1 件)
John D'Errico
2011 年 9 月 9 日
Because it is invalid MATLAB syntax. Wanting to do something does not make it possible.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で NaNs についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!