How to select the column of matrix?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Chetan Fadnis
il 16 Mar 2022
Commentato: Star Strider
il 16 Mar 2022
I have a 10*5 matrix, say A.
I calculate vecnorm, B=vecnorm(A), which gives me values of norm-2 of each column, of order (1*5)
Now I have to select that particular column which highest value of vecnorm. Final matrix will be thus 10*1.
0 Commenti
Risposta accettata
Star Strider
il 16 Mar 2022
Try this —
M = randn(10,5) % Create Matrix
Mv = vecnorm(M)
[mxMv,col] = max(Mv)
Desired_Output = M(:,col)
.
2 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Linear Algebra 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!