min value of each row with corresponding column
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How to do the following?
If there are three columns and I want to get the min value of each row and I want to know from which column was this value
0 commentaires
Réponse acceptée
Dyuman Joshi
le 1 Nov 2023
y = magic(3)
%Utilize the functionality of min()
[m,idx] = min(y, [], 2)
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!