How can i link same index of two vectors vectors?

2 views (last 30 days)
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!

Accepted Answer

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

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!