Filter löschen
Filter löschen

[~,i]=max(y); what does it mean in matlab

33 Ansichten (letzte 30 Tage)
Ramya R
Ramya R am 15 Feb. 2019
Bearbeitet: Mark Sherstan am 15 Feb. 2019
can i know the meaning of this command "[~,i]=max(y);" in matlab??

Antworten (1)

Mark Sherstan
Mark Sherstan am 15 Feb. 2019
Bearbeitet: Mark Sherstan am 15 Feb. 2019
Your answer can be found here, I copied and pasted it below for your convience:
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.

Kategorien

Mehr zu Data Types finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by