Azzera filtri
Azzera filtri

How can i link same index of two vectors vectors?

1 visualizzazione (ultimi 30 giorni)
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!

Risposta accettata

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

Più risposte (0)

Categorie

Scopri di più su Resizing and Reshaping Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by