Effacer les filtres
Effacer les filtres

How to get value in a column or row

1 vue (au cours des 30 derniers jours)
Tran Hoa
Tran Hoa le 30 Juil 2018
Commenté : Tran Hoa le 30 Juil 2018
Hi member, I have a matrix Ex a=[1 2 3 5 6 8], and I only want to take b= a(1), a(2) and a(4) : 1,2,5 in stead of the whole column. Can you instruct me to do it. Thank you.

Réponse acceptée

KSSV
KSSV le 30 Juil 2018
a=[1 2 3 5 6 8] ;
idx = [1 2 4] ;
b = a(idx) ;
  1 commentaire
Tran Hoa
Tran Hoa le 30 Juil 2018
Thank you. It is very useful

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Types 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!

Translated by