Borrar filtros
Borrar filtros

insert vector between two points

3 visualizaciones (últimos 30 días)
nonet21
nonet21 el 11 de Nov. de 2017
Editada: Roger Stafford el 11 de Nov. de 2017
Hello I have two vectors t=[1,2,3,4,5,6] s=[7,8,9] And i want insert the vector s in vector t like that: t=[1,2,3,7,8,9,4,5,6] And i want this special order. Thank you :)

Respuestas (1)

Roger Stafford
Roger Stafford el 11 de Nov. de 2017
Editada: Roger Stafford el 11 de Nov. de 2017
t = [t(1:3);s;t(4:6)];

Categorías

Más información sobre Operators and Elementary Operations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by