take selected rows from given matrix

1 vue (au cours des 30 derniers jours)
JaeSung Choi
JaeSung Choi le 22 Nov 2017
Commenté : JaeSung Choi le 22 Nov 2017
How can i take selected rows from given matrix??
For instance, let A = rand(100) and i want to take 10th,20th,30th ----100th row from A
Without using 'for' ( since i have to do many times, speed is important ), deriving is possible?? Help me!

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 22 Nov 2017
out = A(10:10:end,:);

Plus de réponses (1)

Birdman
Birdman le 22 Nov 2017
A(10:10:100,:)

Catégories

En savoir plus sur 행렬과 배열 dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!