insert vector between two points

3 次查看(过去 30 天)
nonet21
nonet21 2017-11-11
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 :)

回答(1 个)

Roger Stafford
Roger Stafford 2017-11-11
编辑:Roger Stafford 2017-11-11
t = [t(1:3);s;t(4:6)];

类别

Help CenterFile Exchange 中查找有关 Operators and Elementary Operations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by