Index of a Column Vector

26 views (last 30 days)
Ahmet Cin
Ahmet Cin on 29 Dec 2019
Commented: Ahmet Cin on 30 Dec 2019
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
Just use brackets for the array index
A = 1:7;
A([1,2,6])
ans =
1 2 6

Community Treasure Hunt

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

Start Hunting!