<< h5is* tests h5is* tests h5isAttr >>

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

h5isArray

HDF5オブジェクトが配列かどうかを確認

呼び出し手順

b = h5isArray(obj)

引数

obj

H5Object

b

論理値

説明

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

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

参照

履歴

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

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