How to find matrix column & row max & min output as vector?
Mostrar comentarios más antiguos
I need to create a script that gives the maximum & minimum value of each column and each row of a vector. This is what I have so far for the overall max. The answer is supposed to display the the answer as a vector. This is my vector a=[0 7 3 -1 4; 12 14 8 9 5; -2 -3 -4 -7 -6;3 1 9 12 8]. I used the same code for overall max & min. I'm stuck on looping through the columns and giving the answer for each.
mx=a(1);
for p=2:numel(a)
if a(p)>mx
mx=a(p);
end
end
mn=a(1);
for p=2:numel(A)
if A(p)<mn
mn=A(p);
end
end
[mx mn]
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 7 de Jul. de 2015
0 votos
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!