User`s guide

imaqmem
imaqmem(field) returns information for the field specified by the text
string
field.
imaqmem(limit) configures the fram e memory limit, in bytes, for Image
Acquisition Toolbox.
limit is used to determine the maximum amount
of memory the toolbox can use for logging image frames.
Note Configuring the frame memory limit does not rem ove any logged
frames from the image acquisition memory buffer. To remove frames
from the buffer, you can bring them into the MATLAB workspace,
using the
getdata function, or r em ove them from m e m ory, using the
flushdata function.
Examples Use imaqmem to get information about system memory.
imaqmem
ans =
MemoryLoad: 85
TotalPhys: 263766 016
AvailPhys: 373063 68
TotalPageFile: 643 8789 12
AvailPageFile: 391 4465 28
TotalVirtual: 2.1 474e +009
AvailVirtual: 1.6 307e +009
FrameMemoryLimit: 38313984
FrameMemoryUsed: 0
Retrieve informa t ion a bout a specific field returned by imaqmem.
memlimit = imaqmem('F rameMemoryLimit')
memlimit =
38313984
12-25