Could someone explain below part of code please ? I do not understand the first part [~,b]
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
[~,b] = min(abs(RealEL1));
0 Commenti
Risposta accettata
Più risposte (1)
Guillaume
il 4 Ott 2017
The ~ ignores the first output of min as you're only interested in the index of the minimum, not its actual value.
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!