Écrire des programmes Fortran pour lire les données de fichiers MAT
Lire et écrire des données MATLAB® depuis des programmes Fortran
Avant d’écrire une application personnalisée, déterminez si MATLAB répond à vos besoins en matière d’échange de données en consultant les rubriques suivantes.
Fonction
importdataet Import Images, Audio, and Video Interactively.
Fortran MAT File API
matOpen | Open MAT-file |
matClose | Close MAT-file |
MATFile | Type for MAT-file |
matGetVariable | Array from MAT-file |
matGetVariableInfo | Array header information only |
matGetNextVariable | Next array in MAT-file |
matGetNextVariableInfo | Array header information only |
matPutVariable | Array to MAT-file |
matPutVariableAsGlobal | Array to MAT-file as originating from global workspace |
matDeleteVariable | Delete array from MAT-file |
matGetDir | List of variables in MAT-file |
mxIsFromGlobalWS | Determine whether mxArray was copied from MATLAB global workspace |
Rubriques
- Create MAT-File in Fortran
The
matdemo1.Fexample creates the MAT-file,matdemo.mat. - Read MAT-File in Fortran
The
matdemo2.Fexample illustrates how to use the library routines to read the MAT-file created bymatdemo1.Fand describe its contents.