MAT 파일 데이터를 읽어오는 Fortran 프로그램 작성하기
Fortran 프로그램에서 MATLAB® 데이터 읽기와 쓰기
사용자 지정 애플리케이션을 작성하기 전에, 다음 항목을 참조하여 MATLAB이 데이터 교환 요구 사항을 충족하는지 확인하십시오.
Fortran MAT 파일 API
matOpen | MAT 파일 열기 |
matClose | MAT 파일 닫기 |
MATFile | MAT 파일 유형 |
matGetVariable | MAT 파일의 배열 |
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 |
도움말 항목
- Fortran에서 MAT 파일 생성하기
matdemo1.F
예제는 MAT 파일matdemo.mat
를 생성합니다. - Read MAT-File in Fortran
The
matdemo2.F
example illustrates how to use the library routines to read the MAT-file created bymatdemo1.F
and describe its contents.