How to change values of specific elements inside a matrix?

1 次查看(过去 30 天)
I have a 10x10 matrix y. I want to look for all the elements inside y that have a value greater than 100 and divide them by 10. How do I go about this? I was thinking of this if y > 100 y = y./10; end But it doesn't work for someone reason. How can I fix this? Or are there any alternate solutions?

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2016-6-6
编辑:Azzi Abdelmalek 2016-6-6
idx=y>100
y(idx)=y(idx)/10

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Array Geometries and Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by