matrix

1 view (last 30 days)
Mate 2u
Mate 2u on 23 May 2012
Hi there, I have a square matrix and I want to find location of the maximum and minumum in each row.
EDITED!

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 23 May 2012
EDIT
A = rand(5)
[id,id] = sort(A,2)
minrowloc = id(:,1)
maxrowloc = id(:,end)

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!