Hi there, I have a square matrix and I want to find location of the maximum and minumum in each row.
EDITED!

 Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 23 Mai 2012

1 vote

EDIT
A = rand(5)
[id,id] = sort(A,2)
minrowloc = id(:,1)
maxrowloc = id(:,end)

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by