How to concatenate two time arrays with the same time step?

1 view (last 30 days)
Hi All
I have two time series both starting from 0 and show some duration,
t1 =[0,1,2,3,4]
t2= [0,1,2,3]
what I need to have is
Ttotal= [0,1,2,3,4,5,6,7,8]
this is what I did and is not working well :
Ttot= [];
resol=t1(2)-t1(1)
Ttot=[Ttot,t2+Ttot(end)+resol]

Accepted Answer

James Tursa
James Tursa on 26 Apr 2020
Edited: James Tursa on 26 Apr 2020
Ttotal = [t1,t1(end)+1+t2];
  12 Comments

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!