Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.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 > h5group

h5group

グループを作成

呼び出し手順

h5group(obj, names)
h5group(filename, names)

引数

obj

H5Object

names

名前を指定する文字列の行列

filename

ファイル名を指定する文字列

説明

グループの集合を作成します.

// ファイルを作成
a = h5open(TMPDIR + "/test_group.h5", "a");
// 10個のサブグループを有する10個のグループを作成
// まず, 名前を作成
gnames = "Group_" + string(1:10);
sgnames = "SubGroup_" + string(1:10);
names = gnames;
for s=gnames
    names = [names s + "/" + sgnames]
end
// 次に, グループを作成
h5group(a, names);
// 全てOKであることを確認
h5ls(a)
// ...そして
h5ls(a, "Group_3")
// a に関連するリソースを解放
h5close(a);

参照

  • h5group — グループを作成
  • h5dataset — データセットを作成し, データを書き込む
  • h5attr — 属性を作成する

履歴

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

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:
Tue Feb 14 15:10:31 CET 2017