Edit:
I came up with the following code
wind = [9 11 17 25 32 56];
Damp = zeros(6,6000);
Tp_pyMom = zeros(6,52);
Tp_pyTime = zeros(6,52);
for k = 1:6
A = load(['decayDamp' num2str(wind(k)) '.mat']);
Damp(k,:) = A.v;
B = load(['TpPosDamp' num2str(wind(k)) '.mat']);
TpPy = B.tp_pos;
if k == 5
Tp_pyMom(k,:) = TpPy(end-1,2);
Tp_pyTime(k,:) = TpPy(end-1,1);
else
Tp_pyMom(k,:) = TpPy(:,2);
Tp_pyTime(k,:) = TpPy(:,1);
end
end
For k=5 the result was +1 longer than the rest. Now everything is stores as in Damp(6x6000), and I can access the different data with Damp(1,:) etc. Is this a better way than the first post?