extraction of some elements in a column vector
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
x = [1:10]'
how do i extract the 1st, 3rd and 6xth element in the column vector.
2 comentarios
dpb
el 10 de Nov. de 2021
y=x([1 3 6]);
Read Getting Started section on addressing in the documentation...
Respuestas (0)
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!