I am new to Matlab
I am trying to do something to an 2x3 array A:
- add 10 to the highest value of A;
- add 6 to the second highest value of A
- add 4 to the third highest value of A
- add 1 to the minimal value of A
for example:
A = [13 14; 19 17; 54 33];
output :[14 14; 23 17; 64 39];
is there any chance to achieve this without knowing the elements' value inside the array?
help please