How to select specific rows in a table ?

303 vues (au cours des 30 derniers jours)
Jenifer NG
Jenifer NG le 14 Juin 2022
Commenté : Jenifer NG le 14 Juin 2022
Dear All,
I have a table with 200 rows and 2 columns.
Now, I want to select 40 rows with step of 5. row 1 , 5 ,10, 15 ... 200. I try ramsample but it is randoms.
Could any one help me ?
table = randi(200,200,2) % create a maxtrix 1000x2
index = randsample(1:length(table),20)
result = table(index,:)

Réponse acceptée

KSSV
KSSV le 14 Juin 2022
Let T be you table.
idx = 0:5:200 ;
idx(1) = 1 ;
iwant = T(idx,:) ;
  1 commentaire
Jenifer NG
Jenifer NG le 14 Juin 2022
Thanks it is perfect

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by