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

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 > h5flush

h5flush

ファイルに関連するバッファを全てフラッシュする

呼び出し手順

h5flush(obj [, local])

引数

obj

H5Object

local

論理値

説明

ファイルに関連するバッファを全てフラッシュします. local が %T の場合, そのファイルのみがフラッシュされ, その他は仮想ファイル全体がフラッシュされます.

// HDF5ファイルを作成
a = h5open(TMPDIR  +"/test.h5", "w");
// データセットを書き込む
h5write(a, "MyDset", 1:100);
// ファイルをフラッシュ
h5flush(a);
// 処理を完了し, 全てのリソースを解放
h5close(a);

参照

  • h5open — HDF5ファイルをオープン
  • h5close — HDF5ファイルをオープン

履歴

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

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:
Wed Apr 01 10:25:03 CEST 2015