[~,i]=max(y); what does it mean in matlab
Show older comments
can i know the meaning of this command "[~,i]=max(y);" in matlab??
Answers (1)
Mark Sherstan
on 15 Feb 2019
Edited: Mark Sherstan
on 15 Feb 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.
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!