Index of a Column Vector
Show older comments
Hello,
I want to show the first, the second and the sixth element of a 7x1 vector. Which function i should use ?
Thanks for help!
Answers (1)
Thiago Henrique Gomes Lobato
on 29 Dec 2019
Just use brackets for the array index
A = 1:7;
A([1,2,6])
ans =
1 2 6
1 Comment
Ahmet Cin
on 30 Dec 2019
Categories
Find more on Matrix Indexing 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!