| MATLAB Application Program Interface | Search  Help Desk |
| matGetArray | Examples |
C Syntax
#include "mat.h" mxArray *matGetArray(MATFile *mfp, const char *name);
Arguments
mfp
name
Description
This routine allows you to copy an mxArray out of a MAT-file.matGetArray reads the named mxArray from the MAT-file pointed to by mfp and returns a pointer to a newly allocated mxArray structure, or NULL if the attempt fails.
Be careful in your code to free the mxArray created by this routine when you are finished with it.
Example
Seematcreat.c and matdgns.c in the eng_mat subdirectory of the examples directory for sample programs that illustrate how to use the MATLAB MAT-file routines in a C program.