how to take first some numbers from sequence?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Suppose I have a sequence of n numbers x=[1,2,6,5,5,44,12,12,12,65,9,9,9,8,33,6,5,4,4,8,7,98,98,61,61,61...n] how to take first s=14 numbers, like y=[1,2,6,5,5,44,12,12,12,65,9,9,9,8]
1 comentario
Respuestas (1)
Andrei Bobrov
el 11 de Mayo de 2016
Editada: Andrei Bobrov
el 11 de Mayo de 2016
y = x(1:s)
0 comentarios
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices 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!