File: oldload.man

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (37 lines) | stat: -rw-r--r-- 921 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.TH oldload 1 "April 1993" "Scilab Group" "Scilab Function"
.so ../sci.an
.SH NAME
oldload - load saved variable in 2.4.1 and previous formats
.SH CALLING SEQUENCE
.nf
oldload('file-name' [,x1,...,xn])
.fi
.SH PARAMETERS
.TP 10
file-name 
: character string
.TP 10
xi
: arbitrary Scilab variable name(s) given as strings.
.SH DESCRIPTION
The \fVoldload\fR function is obsolete and is retained only for
compatibility purpose.
.LP
The \fVoldload\fR command can be used to reload in the Scilab session
variables previously saved in a file with the \fVsave\fR command.
.LP
\fVoldload('file-name')\fR loads the variables saved in file \fV'file-name'\fR. 
.LP
\fVoldload('file-name','x','y',...,'z')\fR loads only variables \fVx,y,...,z\fR
stored in file \fV'file-name'\fR. 
.SH EXAMPLES
.nf
a=eye(2,2);b=ones(a);
oldsave('TMPDIR/vals.dat',a,b);
clear a
clear b
oldload('TMPDIR/vals.dat','a','b');
.fi
.SH SEE ALSO
save, getf