From: Yi Jin Lim on
I loaded the data from MAT-file, what does this mean?
mov=load('filename')
mov =

ans: 199
d: [4-D uint8]
t: [200x1 double]
vid: [1x1 struct]
From: ImageAnalyst on
The load() function returned to you a structure with several members
that contain data. (Not sure why ans is one of them though). What
were you expecting? Then, because you did not end your command with a
semicolon, it printed the contents of that structure to the command
window.
From: Alex Jin on
ImageAnalyst <imageanalyst(a)mailinator.com> wrote in message <74c6e3ab-e2c0-4173-9715-192ab0e23ed8(a)t20g2000yqe.googlegroups.com>...
> The load() function returned to you a structure with several members
> that contain data. (Not sure why ans is one of them though). What
> were you expecting? Then, because you did not end your command with a
> semicolon, it printed the contents of that structure to the command
> window.


I would make the data i load into several frame of images. How would i do that?