Replace 'greater than' values in a matrix

144 views (last 30 days)
I want to look through a very large matrix and replace numbers that are larger than, say, a, with b.
Is there a simple way or a function to do this?

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 2 May 2012
M - your matrix
M(M > a) = b;

More Answers (0)

Community Treasure Hunt

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

Start Hunting!