Scilab 6.0.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
h5group
グループを作成
呼び出し手順
h5group(obj, names) h5group(filename, names)
引数
- obj
H5Object
- names
名前を指定する文字列の行列
- filename
ファイル名を指定する文字列
説明
グループの集合を作成します.
例
// ファイルを作成 a = h5open(TMPDIR + "/test_group.h5", "a"); // 10個のサブグループを有する10個のグループを作成 // まず, 名前を作成 gnames = "Group_" + string(1:10); sgnames = "SubGroup_" + string(1:10); names = gnames; for s=gnames names = [names s + "/" + sgnames] end // 次に, グループを作成 h5group(a, names); // 全てOKであることを確認 h5ls(a) // ...そして h5ls(a, "Group_3") // a に関連するリソースを解放 h5close(a);
履歴
バージョン | 記述 |
5.5.0 | HDF5モジュールが導入されました. |
Report an issue | ||
<< h5get | HDF5 Management | h5isArray >> |