Find out the minimum value from a column

4 visualizzazioni (ultimi 30 giorni)
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?

Risposta accettata

KSSV
KSSV il 30 Gen 2022
Read about the function min.
A = rand(3,10) ;
iwant = min(A) % this is same as min(A,[],1)

Più risposte (0)

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Prodotti


Release

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by