How to assign a different value to a given value in a 2-D array?
3 ビュー (過去 30 日間)
古いコメントを表示
Abhishek Chakraborty
2021 年 3 月 27 日
コメント済み: Abhishek Chakraborty
2021 年 3 月 27 日
I have a 900x1200 element 2-D array. Suppose it is A. I want to assign a value "1" to all the elements whose value is "5". How can I do that? It is a numeric array.
0 件のコメント
採用された回答
Sriram Tadavarty
2021 年 3 月 27 日
Hi Abhishek,
You can try this
A(A==5) = 1;
Hope this helps
Regards,
Sriram
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!