Andrew Teixeira
Followers: 0 Following: 0
Feeds
已回答
How do I find the indices of the maximum (or minimum) value of my matrix?
How about just: A = magic(5); [Amins, idx] = min(A); [Amin, Aj] = min(Amins); Ai = idx(Aj); where your final matrix min...
How do I find the indices of the maximum (or minimum) value of my matrix?
How about just: A = magic(5); [Amins, idx] = min(A); [Amin, Aj] = min(Amins); Ai = idx(Aj); where your final matrix min...
5 years 前 | 10