<< h5isType h5is* tests h5attr >>

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

h5isVlen

HDF5オブジェクトが可変長配列かどうか確認

呼び出し手順

b = h5isVlen(obj)

引数

obj

H5Object

b

論理値

説明

HDF5オブジェクトが可変長配列かどうか確認します.

// SODファイル(HDF5ファイル)を作成
x = (1:10) + %i*(20:29);
save(TMPDIR + "/x.sod", "x");
// ファイルを開く
a = h5open(TMPDIR + "/x.sod", "r");
// テスト
h5isVlen(a)
// 全て閉じる
h5close(a)

参照

履歴

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

Report an issue
<< h5isType h5is* tests h5attr >>