| MATLAB C Math Library | Search  Help Desk |
| mlfLoad | See Also |
NULL.
C Prototype
void mlfLoad(mxArray *fname, ... );
C Syntax
#include "matlab.h" mxArray *fname; /* Required input argument(s) */ mxArray *x, *y, *z; /* Output arguments */ mlfLoad(Notefname,"X",&x,NULL)); mlfLoad(fname,"X",&x, /* Name/variable pairs */ "Y",&y, "Z",&z, ..., NULL)); /* Terminate with a NULL */
mlfLoad() uses a nonstandard calling convention. You specify the arguments in pairs: the name of the variable whose value you want to load from disk and the address of a variable in which you want this value to be stored. Specify the variable to load is specified as a standard C char pointer. You can specify as many of these pairs as you want; terminate the argument list with a NULL.
MATLAB Syntax
loadfnameX loadfnameX,Y,Z loadfnameX,Y,Z...
See Also
load Calling Conventions