How to select the column of matrix?
5 views (last 30 days)
Show older comments
Chetan Fadnis
on 16 Mar 2022
Commented: Star Strider
on 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 Comments
Accepted Answer
Star Strider
on 16 Mar 2022
Try this —
M = randn(10,5) % Create Matrix
Mv = vecnorm(M)
[mxMv,col] = max(Mv)
Desired_Output = M(:,col)
.
2 Comments
More Answers (0)
See Also
Categories
Find more on Linear Algebra 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!