Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.2 - English

Change language to:
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 Help >> HDF5 Management > h5label

h5label

Label a dataset

Syntax

h5label(obj, location, dims, names)
h5label(filename, location, dims, names)

Arguments

obj

a H5Object

location

a string giving the location

dims

a row of doubles

names

a row of strings with the same size as dims

filename

a string giving the filename

Description

Label a dataset according to dims and names. The dims(i)-nth dimension is labelled with names(i).

Examples

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

// The data
x = uint8(1:24);

// We make a dataset with x as an hypermatrix 1x2x3x4
h5dataset(a, "My Dataset", [1 2 3 4 ; 1 1 1 1 ; 1 1 1 1 ; 1 1 1 1; 1 2 3 4], x, [1 2 3 4 ; 1 2 3 4 ; 1 1 1 1 ; 1 1 1 1 ; 1 1 1 1 ; 1 2 3 4]);

// We label it
h5label(a, "My Dataset", [1 3], ["Hello" "World"]);

// We check
h5dump(a)

// We close all
h5close(a)

See also

History

VersionDescription
5.5.0 HDF5 module introduced.
Report an issue
<< h5isVlen HDF5 Management h5ln >>

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:
Thu Feb 14 14:57:21 CET 2019