Scilab 5.3.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
matfile_open
Opens a Matlab V5 binary MAT-file.
Calling Sequence
fd = matfile_open(filename[, mode])
Arguments
- filename
String: the path of the file. Must contain only ANSI character.
- mode
String: file access type (
"r"
by default)."r": opens the file for reading.
"w": opens the file for writing.
- fd
Real: file descriptor (-1 if opening failed).
Description
Opens a Matlab binary MAT-file for reading or writing data.
Authors
- V.C
Bibliography
This function uses MATIO library (http://sourceforge.net/projects/matio/
).
<< matfile_listvar | Matlab binary files I/O | matfile_varreadnext >> |