If a number in a matrix is <9 add 5 to it
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
James Knight
am 29 Okt. 2019
Beantwortet: Jos (10584)
am 29 Okt. 2019
Hi
I was reading on Matlab refrences :
A = 4×4
16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1
Replace all values less than 9 with the value 10.
A(A < 9) = 10
If I want to add 5 to the values that are less than 9 rather than repalce them with 10 how would I go about it please?
Thanks
0 Kommentare
Akzeptierte Antwort
Jos (10584)
am 29 Okt. 2019
Use the same selection on the right hand side of the equal sign
A(A<9) = A(A<9) + 5
I myself prefer to code it like this
tf = A < 9
A(tf) = A(tf) + 5
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Operators and Elementary Operations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!