How to find matrix column & row max & min output as vector?
Show older comments
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]
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 7 Jul 2015
0 votes
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!