Hello, I'm having trouble figuring out how to replace values in a matrix that fall between two values.
For example, lets say i have matrix, and i want to replace all values that fall between 20 and 50 with -3 instead, how would I go about doing that?

 Akzeptierte Antwort

Adam Danz
Adam Danz am 6 Feb. 2021

1 Stimme

Use basic Matlab indexing.
M(M>20 & M<50) = -3;

Weitere Antworten (0)

Kategorien

Produkte

Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by