How to assign a different value to a given value in a 2-D array?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Abhishek Chakraborty
am 27 Mär. 2021
Kommentiert: Abhishek Chakraborty
am 27 Mär. 2021
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 Kommentare
Akzeptierte Antwort
Sriram Tadavarty
am 27 Mär. 2021
Hi Abhishek,
You can try this
A(A==5) = 1;
Hope this helps
Regards,
Sriram
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!