Finding of value coordinate

1 回表示 (過去 30 日間)
MOHD UWAIS
MOHD UWAIS 2022 年 1 月 10 日
コメント済み: Walter Roberson 2022 年 1 月 10 日
For example,
x=-50:1:50;
y=4*x.^2+5;
plot(x,y,'*-')
How we can find x value corresponding to the minimum value of y.

採用された回答

Walter Roberson
Walter Roberson 2022 年 1 月 10 日
[~, idx] = min(y);
x(idx)

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by