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
Matlab V5 バイナリ MATファイルを開く.
呼び出し手順
fd = matfile_open(filename[, mode])
パラメータ
- filename
文字列: ファイルのパス. ANSI文字のみを含む必要があります.
- mode
文字列: ファイルアクセス型 (デフォルトは
"r"
)."r": 読み込み用にファイルを開く.
"w": 書き込み用にファイルを開く.
- fd
実数: ファイル記述子 (開くのに失敗した場合は -1).
説明
Matlab バイナリ MATファイルをデータ読み込み用または書き込み用に 開きます.
作者
- V.C
参考文献
この関数はMATIOライブラリ (http://sourceforge.net/projects/matio/
)を使用しています.
<< matfile_listvar | Matlab binary files I/O | matfile_varreadnext >> |