Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.0 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> HDF5 Management > 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)

参照

  • h5isFile — HDF5オブジェクトがファイルかどうか確認
  • h5isSet — HDF5オブジェクトがデータセットかどうか確認
  • h5isAttr — HDF5オブジェクトが属性かどうか確認
  • h5isSpace — HDF5オブジェクトがデータスペースかどうか確認
  • h5isType — HDF5オブジェクトが型かどうか確認
  • h5isRef — HDF5オブジェクトがリファレンスオブジェクトかどうか確認
  • h5isArray — HDF5オブジェクトが配列かどうかを確認
  • h5isVlen — HDF5オブジェクトが可変長配列かどうか確認

履歴

バージョン記述
5.5.0 HDF5モジュールが導入されました.
Report an issue
<< h5isAttr HDF5 Management h5isFile >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Fri Apr 11 14:18:58 CEST 2014