<< h5isSpace h5is* tests h5isVlen >>

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

h5isType

HDF5オブジェクトが型かどうか確認

呼び出し手順

b = h5isType(obj)

引数

obj

H5Object

b

論理値

説明

HDF5オブジェクトがかどうか確認します.

// SODファイル(HDF5ファイル)を作成
x = 1:10;
save(TMPDIR + "/x.sod", "x");
// ファイルを開く
a = h5open(TMPDIR + "/x.sod", "r");
// Test
h5isType(a)
// データセット'x'に関連する型に対してテスト
h5isType(a.root.x.type)
// 全て閉じる
h5close(a)

参照

履歴

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

Report an issue
<< h5isSpace h5is* tests h5isVlen >>