<< h5isAttr h5is* tests h5isFile >>

Scilab Help >> HDF5 files > h5is* tests > h5isCompound

h5isCompound

HDF5オブジェクトが複合オブジェクトかどうかを確認

呼び出し手順

b = h5isCompound(obj)

引数

obj

H5Object

b

論理値

説明

HDF5が複合オブジェクトであるかどうかを調べます.

// HDF5ファイルであるSODファイルを作成します
x = (1:10) + %i*(20:29);
save(TMPDIR + "/x.sod", "x");
// ファイルをオープン
a = h5open(TMPDIR + "/x.sod", "r");
// テスト
h5isCompound(a)
// root.x.dataを確認
h5isCompound(a.root.x.data)
// 全て閉じる
h5close(a)

参照

履歴

VersionDescription
5.5.0 HDF5モジュールが導入されました.

Report an issue
<< h5isAttr h5is* tests h5isFile >>