Index of a Column Vector

26 visualizzazioni (ultimi 30 giorni)
Ahmet Cin
Ahmet Cin il 29 Dic 2019
Commentato: Ahmet Cin il 30 Dic 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!

Risposte (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!

Translated by