How to index random points from vector
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Don Singh
el 7 de Oct. de 2015
Respondida: Andrei Bobrov
el 7 de Oct. de 2015
I have a vector "faa" of size 64 rows X 1 column and wish to extract the first point and a range of 22:42nd data points. How do I do this
0 comentarios
Respuesta aceptada
Star Strider
el 7 de Oct. de 2015
To combine them all in one ‘Result’ vector:
Result = [faa(1); faa(22:42)];
Otherwise:
faa_1 = faa(1);
faa_22_42 = faa(22:42);
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Special Characters 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!