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

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 files > h5is* tests > h5isRef

h5isRef

HDF5オブジェクトがリファレンスオブジェクトかどうか確認

呼び出し手順

b = h5isRef(obj)

引数

obj

H5Object

b

論理値

説明

HDF5オブジェクトがリファレンスオブジェクトかどうか確認します.

// SODファイル(HDF5ファイル)を作成
x = list(1, "hello");
save(TMPDIR + "/x.sod", "x");
// ファイルを開く
a = h5open(TMPDIR + "/x.sod", "r");
// テスト
h5isRef(a)
// 'x'という名前のデータセットのリファレンスに対してテスト
y = a.root.x.data;
h5isRef(y)
// リファレンス値を取得
y(1).data, y(2).data
// 全て閉じる
h5close(a)

参照

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

履歴

バージョン記述
5.5.0 HDF5モジュールが導入されました.
Report an issue
<< h5isGroup h5is* tests h5isSet >>

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:
Mon Jan 03 14:37:52 CET 2022