Find out the minimum value from a column
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
NIRBAN CHAKRABORTY
am 30 Jan. 2022
Beantwortet: KSSV
am 30 Jan. 2022
Suppose I have a matrix of [3*10] now i want to find the minimum value from each column what will be the command for that?
0 Kommentare
Akzeptierte Antwort
KSSV
am 30 Jan. 2022
Read about the function min.
A = rand(3,10) ;
iwant = min(A) % this is same as min(A,[],1)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!