Reputation: 285
Is it possible to select only particular columns of a matrix? E.g. I have a 10x100 shaped matrix and I only would like to get these 4 columns: 231, 82, 12, 493.
Upvotes: 17
Views: 54621
Reputation: 3348
Yes, it is possible. If your matrix is named A
then A(:, [3,7,12,89])
will retrieve the columns numbered 3, 7, 12, and 89.
Upvotes: 39