How can i link same index of two vectors vectors?

2 Ansichten (letzte 30 Tage)
AlexDp
AlexDp am 11 Sep. 2019
Kommentiert: AlexDp am 11 Sep. 2019
Hi all,
i have these data:
A= [a; b; c]; %a, b c are row vectors 1x365
V=var(A');
M= mean(A');
G=max(V)
I'd like to know how can i obtain the value of "M" corresponding of index max(V). The idea is: M(index of max(V))=value.
I hope someone can help me. Thanks!

Akzeptierte Antwort

madhan ravi
madhan ravi am 11 Sep. 2019
[~,index]=max(V);
Value = M(index)

Weitere Antworten (0)

Kategorien

Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by