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

1 次查看(过去 30 天)
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.

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by