Main Content

matDeleteVariable (C and Fortran)

Delete array from MAT-file

C Syntax

#include "mat.h"
int matDeleteVariable(MATFile *mfp, const char *name);

Fortran Syntax

#include "mat.h"
integer*4 matDeleteVariable(mfp, name)
mwPointer mfp
character*(*) name

Arguments

mfp

Pointer to MAT-file information

name

Name of mxArray to delete

Returns

0 if successful, and nonzero otherwise.

Description

matDeleteVariable deletes the named mxArray from the MAT-file pointed to by mfp.

Examples

See these examples in matlabroot/extern/examples/eng_mat:

Version History

Introduced before R2006a