Complex nested loops- matrix indexing
显示 更早的评论
I have a 20x20 matrix, I need to move some elements from a starting index i.e. (6, 3) to an ending index i.e. (17,2) to a new 12x2 matrix in this case.
回答(1 个)
Bruno Luong
2020-7-31
A=randi(10,20,20) % some tes matrix, replace it with yours
B = A(6:1:17, 3:-1:2)
类别
在 帮助中心 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!