Outputing a correspond element of another variable

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).

 채택된 답변

Ameer Hamza
Ameer Hamza 2020년 12월 30일
편집: Ameer Hamza 2020년 12월 30일
Try this
A = ["Bayo" "Tun" "s"];
B = [21, 45, 11];
[~, idx] = max(B);
output = A(idx);
Result
>> output
output =
"Tun"

댓글 수: 4

Cutie
Cutie 2020년 12월 30일
Thank you Ameer Hamza. it works. Please can you explain what
[~, idx] = max(B); does? Particularly the '~'
max output two values. The first output is the maximum value, and the second is the index of the maximum value. ~ tells MATLAB to ignore the first output. You can also assign it to a variable if you are going to use it later
[max_value, idx] = max(B);
Cutie
Cutie 2020년 12월 30일
Thank you so much!
I am glad to be of help!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Mathematics에 대해 자세히 알아보기

태그

질문:

2020년 12월 30일

댓글:

2020년 12월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by