File: oldsave.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 (40 lines) | stat: -rw-r--r-- 951 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
38
39
40
.TH oldsave 1 "April 1999" "Scilab Group" "Scilab Function"
.so ../sci.an
.SH NAME
oldsave - saving variables in 2.4.1 and previous format
.SH CALLING SEQUENCE
.nf 
oldsave(filename [,x1,x2,...,xn])
.fi
.SH PARAMETERS
.TP 10
filename 
: character string or a logical unit returned by file('open',...)
.TP 10
xi
: arbitrary Scilab variable(s) 
.SH DESCRIPTION
The \fVoldsave\fR function is obsolete and is retained only for
compatibility purpose.
.LP

The \fVoldsave\fR command can be used to save Scilab current variables 
in binary form in a file.
.LP
\fVoldsave(filename)\fV saves all current variables in the file
defined by  \fVfilename\fR.
.LP
\fVoldsave(file-name,x,y)\fR saves only named variables \fVx\fR and \fVy\fR.
.LP
Saved  variables can be reloaded by the \fVload\fR or oldload command.
.SH EXAMPLES
.nf
a=eye(2,2);b=ones(a);
oldsave('TMPDIR/val.dat',a,b);
clear a
clear b
oldload('TMPDIR/val.dat','a','b');

.fi
.SH SEE ALSO
load, file