how to find the mininmum value in a double vector ?

3 ビュー (過去 30 日間)
Mira le
Mira le 2021 年 11 月 28 日
コメント済み: Image Analyst 2021 年 11 月 29 日
hello every one
I have vector with double values and I want to determine the smallest value as well as irs index
vecto=[ 2.6660 2.2852 10.0000 3.2617 10.0000 10.0000 9.8532]
I use min(vecto)
but it doesn't work
any solution to this problem
mplease help me!
Thank you
  1 件のコメント
John D'Errico
John D'Errico 2021 年 11 月 29 日
Pease don't ask the same question a third time.

サインインしてコメントする。

回答 (1 件)

Awais Saeed
Awais Saeed 2021 年 11 月 28 日
You are half way there. Use
[value, index] = min(vector)
  1 件のコメント
Image Analyst
Image Analyst 2021 年 11 月 29 日
I talked about how that is not the most general or robust way to do it in my answer to his duplicate question:
However it will work as long as you know in advance that the min occurs only once and no more.

サインインしてコメントする。

カテゴリ

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

製品


リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by