Let's say TIME,X,Y,Z are your measurements at a distance of 5 sec for TIME.
Let's build a new time vector
TIME_REQUESTED = TIME(1):TIME(end)
at a distance of 1 sec.
Then you get your 1 sec vectors X_REQUESTED, Y_REQUESTED and Z_REQUESTED simply by
X_REQUESTED = interp1(TIME,X,TIME_REQUESTED); Y_REQUESTED = interp1(TIME,Y,TIME_REQUESTED); Z_REQUESTED = interp1(TIME,Z,TIME_REQUESTED);
Best wishes
Torsten.