[~,i]=max(y); what does it mean in matlab
46 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
can i know the meaning of this command "[~,i]=max(y);" in matlab??
0 commentaires
Réponses (1)
Mark Sherstan
le 15 Fév 2019
Modifié(e) : Mark Sherstan
le 15 Fév 2019
The ~ represents an output that is discarded. It is essentially equivalent to:
[dummy,idx]=min(dists);
clear dummy
For this example, the code wants to work with the index of the minimum value, not the value itself, so the minimum value that is returned is discarded and only the index is retained.
0 commentaires
Voir également
Catégories
En savoir plus sur Multirate Signal Processing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!