Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.3 - Français

Change language to:
English - 日本語 - 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

Aide Scilab >> Entrées/Sorties > load

load

Load a saved variable or a serie of variables

Calling Sequence

load(filename [,x1,...,xn])
load(fd [,x1,...,xn])

Arguments

filename

character string containing the path of the file

fd

a file descriptor given by a call to mopen

xi

arbitrary Scilab variable name(s) given as strings.

Description

The load command can be used to reload in the Scilab session variables previously saved in a file with the save command. If the file contains graphic handle variables, the corresponding graphics_entities are drawn.

Since Scilab 5.0, all uimenu or uicontrol handles are also drawn.

load(filename) loads the variables saved in file given by its path filename.

load(fd) loads the variables saved in file given by its descriptor fd.

load(filename,'x','y') or load(fd,'x','y') loads only variables x,y.

Even if the binary file format has changed with 2.5 version of Scilab, load(filename,...) is able to read old format files.

Note that the written file is portable to other operating systems and architectures (little and big endian).

Examples

a=eye(2,2);b=ones(a);
save('vals.dat',a,b);
clear a
clear b
load('vals.dat','a','b');

See Also

  • save — Save a variable or a serie of variables in a binary file
  • read — matrices read
  • listvarinfile — list the contents of a saved data file
  • save_format — format of files produced by "save"
  • exec — exécution d'un script (fichier de commandes)
  • mopen — open a file
<< input Entrées/Sorties oldload >>

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 Oct 05 12:11:00 CEST 2011