Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.0 - 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 manual >> xcos > Scilab Utilities Functions > xcosPalExport

xcosPalExport

Export a palette instance to a path.

Calling Sequence

xcosPalExport(pal, path);
status = xcosPalExport(pal, path);
[status, message] = xcosPalExport(pal, path);

Arguments

pal:

palette tlist; the palette to export

path:

string path; where to export the palette (HDF5 formatted file)

status:

boolean; status of the export

msg:

string; error message

Description

Export Scilab palette instance to a file.

Examples

loadScicosLibs();
pal = xcosPal();

sumPath = TMPDIR + "/sum.h5";
bigSomPath = TMPDIR + "/sum.h5";

scs_m = SUM_f("define");
export_to_hdf5(sumPath, "scs_m");
scs_m = BIGSOM("define");
export_to_hdf5(bigSomPath, "scs_m");

pal = xcosPalAddBlock(pal, sumPath);
pal = xcosPalAddBlock(pal, bigSomPath);

xcosPalExport(pal, TMPDIR + "/palette.h5");

Authors

  • Clément DAVID
<< xcosPalAddBlock Scilab Utilities Functions xcos >>

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 Jan 26 16:23:48 CET 2011