finding the max number?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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)?
0 Kommentare
Antworten (1)
Chunru
am 12 Sep. 2021
x=[1 3 5 7]
y=x.^2+5 % use .^ here
[~, idx] = max(y) % idx the where y is the max
x(idx) % corresponding x
y(idx)
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!