matrix row extraction help
1 view (last 30 days)
Show older comments
hi there, i have a very simple question. how do i extract certain rows from a matrix. for example say i have a matrix nxm and i want to extract every 7th row from that matrix. how do i do that? thanks in advance. SN
0 Comments
Accepted Answer
Andrei Bobrov
on 13 Mar 2013
Edited: Andrei Bobrov
on 13 Mar 2013
x = randi(150,40,10); % your matrix
out = x(7:7:end,:);
0 Comments
More Answers (0)
See Also
Categories
Find more on Logical 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!