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

45 ビュー (過去 30 日間)
Ramya R
Ramya R 2019 年 2 月 15 日
編集済み: Mark Sherstan 2019 年 2 月 15 日
can i know the meaning of this command "[~,i]=max(y);" in matlab??

回答 (1 件)

Mark Sherstan
Mark Sherstan 2019 年 2 月 15 日
編集済み: Mark Sherstan 2019 年 2 月 15 日
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.

カテゴリ

Help Center および File ExchangeData Types についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by