finding the max number?

x=[1 3 5 7]
y=x^2+5
y=[6 14 30 54]
max(y)
how do i find x value corresponding to max(y)?

回答 (1 件)

Chunru
Chunru 2021 年 9 月 12 日

1 投票

x=[1 3 5 7]
x = 1×4
1 3 5 7
y=x.^2+5 % use .^ here
y = 1×4
6 14 30 54
[~, idx] = max(y) % idx the where y is the max
idx = 4
x(idx) % corresponding x
ans = 7
y(idx)
ans = 54

カテゴリ

ヘルプ センター および File ExchangeSimEvents についてさらに検索

製品

リリース

R2021a

タグ

質問済み:

Ls
2021 年 9 月 12 日

回答済み:

2021 年 9 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by