matrix calculation for matrix
1 次查看(过去 30 天)
显示 更早的评论
hi everyone,
i need urgent help for my code,
i have A=400x5 matrix, and B=0x5 matrix, i want to take the 10th rows(10 20 30 40 50 60) of the A matrix and equal them to the B matrix
for example , B(5,:)=A(50,:) and B(6,:)=A(60,:) goes like this.
please need help.
0 个评论
采纳的回答
更多回答(1 个)
John D'Errico
2021-5-10
编辑:John D'Errico
2021-5-10
Simple. One line. No for loop. Nothing hard.
B = A(10:10:end,:);
另请参阅
类别
在 Help Center 和 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!