From: Matlab User on
Hi guys,
I used the following function so matlab can play the movie I created 5 times.
The first numbers consists of all the frames I want to be played, the second (:) all data points, and the third (:) all coordinates.

data3 = [test(35:140,:,:);test(35:140,:,:);test(35:140,:,:);test(35:140,:,:);test(35:140,:,:)];

Now I want to manipulate one of the data points, and have succesfully done so using the following command, but it only works for the first loop, and not for all 5...

for i = 1:525
data3(i,16,2) = data3(i,16,2)+60*(70-abs(70-i));
data3(i,16,1) = data3(i,16,1)-40*(70-abs(70-i));

Any ideas or suggestions will be greatly appreciated

Cheers