Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> HDF5 Management > h5umount

h5umount

Unmount a previously mounted file.

Syntax

h5umount(obj, location)

Arguments

obj

a H5Object

location

a string giving the mount point

Description

Unmount a previously mounted file.

Examples

// Create an HDF5 file
a = h5open(TMPDIR + "/test.h5", "w")

// we create a group which will be used as mount point
h5group(a, "/mnt");

// Create an other file with a group and a dataset
b = h5open(TMPDIR + "/test1.h5", "w")
h5group(b, "Group_1");
h5write(b, "Group_1/Dataset_1", [1 2;3 4]);

// Mount b on a
h5mount(a, "/mnt", b)

// Now we can modify or read b like if we were in a
a.root.mnt.Group_1.Dataset_1.data
h5write(a.root.mnt.Group_1, "Dataset_1", [10 11;12 13])

// We can now unmount and remove the mount point
h5umount(a, "/mnt")
h5rm(a, "/mnt")

// We close all
h5close(a, b)

// Check that the modification in b is ok
h5dump(TMPDIR + "/test1.h5", "/Group_1/Dataset_1")

See Also

  • h5mount — Mount a file on a group

History

VersionDescription
5.5.0 HDF5 module introduced.
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:38 CEST 2016