From: Doug D on
I was playing around with GUIs, and I am stumped on something. I have a .avi file and wanted to play it in an axes in my GUI, how could I go about this with a loop?

I have read up on the funcitons like movie(m) and getframe, but this has only confused me more.

Any help is appreciated.
From: Doug D on
This is what I have so far:

axes(handles.axes1)

for j = 1:284
F(j) = getframe;
set(handles.axes1,'nextplot',movie(F))
end

Please help if you can.
From: Doug D on
Nevermind I got it, using a loop and move = aviread(file.avi) and mov(m)