Azzera filtri
Azzera filtri

Could someone explain below part of code please ? I do not understand the first part [~,b]

1 visualizzazione (ultimi 30 giorni)
[~,b] = min(abs(RealEL1));

Risposta accettata

Matt J
Matt J il 4 Ott 2017
Modificato: Matt J il 4 Ott 2017
These are the outputs of the min() function. b is the location of the minimum value. ~ means that the first output argument, the minimum value itself, is not to be assigned to any variable.

Più risposte (1)

Guillaume
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.

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by