Outputing a correspond element of another variable

1 Ansicht (letzte 30 Tage)
Cutie
Cutie am 30 Dez. 2020
Kommentiert: Ameer Hamza am 30 Dez. 2020
I want my final output to be the element A that is equivalent to B(max)
A = ["Bayo" "Tun" "s"]
B = [21, 45, 11]
example
max(B) = 45
How do I output the corresponding element in A (in it original string format).

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 30 Dez. 2020
Bearbeitet: Ameer Hamza am 30 Dez. 2020
Try this
A = ["Bayo" "Tun" "s"];
B = [21, 45, 11];
[~, idx] = max(B);
output = A(idx);
Result
>> output
output =
"Tun"
  4 Kommentare
Cutie
Cutie am 30 Dez. 2020
Thank you so much!
Ameer Hamza
Ameer Hamza am 30 Dez. 2020
I am glad to be of help!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by