Index of a Column Vector

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)

Just use brackets for the array index
A = 1:7;
A([1,2,6])
ans =
1 2 6

Asked:

on 29 Dec 2019

Commented:

on 30 Dec 2019

Community Treasure Hunt

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

Start Hunting!