Scilab 5.5.2
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_listvar
Matlab バイナリ MATファイルの中の変数の一覧を得る.
呼び出し手順
[names[, classes[, types]]] = matfile_listvar(fd)
引数
- fd
実数: (matfile_openにより返された)ファイル記述子.
- names
文字列ベクトル: 変数名.
- classes
実数ベクトル: 変数のクラス.
- types
実数ベクトル: 変数のデータ型.
例
A = rand(10,10); B = sprand(100,100,0.1); C = "foo"; D = "bar"; savematfile('test_matfile.mat','A','B','C','D','-v6'); clear(); fd = matfile_open("test_matfile.mat"); [name, classes, types]=matfile_listvar(fd); matfile_close(fd); for i=1:size(name,"*") do disp("The variable " + name(i) + " has type " + string(types(i)) + " and class " + string(classes(i))) end
参照
- matfile_open — Matlab バイナリ MAT-ファイルを開く.
- matfile_close — Matlab バイナリ MATファイルを閉じる.
- matfile_varwrite — Matlab バイナリ MATファイルに変数を書き込む.
- matfile_varreadnext — Matlab バイナリ MATファイルの次の変数を読み込む.
参考文献
この関数はMATIOライブラリ (
http://sourceforge.net/projects/matio/
)を使用しています.
Report an issue | ||
<< matfile_close | Matlab binary files I/O | matfile_open >> |