How to select the column of matrix?
5 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Star Strider
2022-3-16
Try this —
M = randn(10,5) % Create Matrix
Mv = vecnorm(M)
[mxMv,col] = max(Mv)
Desired_Output = M(:,col)
.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!