matrix calculation for matrix
2 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
More Answers (1)
John D'Errico
on 10 May 2021
Edited: John D'Errico
on 10 May 2021
Simple. One line. No for loop. Nothing hard.
B = A(10:10:end,:);
3 Comments
See Also
Categories
Find more on Loops and Conditional Statements 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!