How to assign a different value to a given value in a 2-D array?

1 vue (au cours des 30 derniers jours)
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.

Réponse acceptée

Sriram Tadavarty
Sriram Tadavarty le 27 Mar 2021
Hi Abhishek,
You can try this
A(A==5) = 1;
Hope this helps
Regards,
Sriram

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by