Borrar filtros
Borrar filtros

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

33 visualizaciones (últimos 30 días)
Ramya R
Ramya R el 15 de Feb. de 2019
Editada: Mark Sherstan el 15 de Feb. de 2019
can i know the meaning of this command "[~,i]=max(y);" in matlab??

Respuestas (1)

Mark Sherstan
Mark Sherstan el 15 de Feb. de 2019
Editada: Mark Sherstan el 15 de Feb. de 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.

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by