File: oldsave.cat

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 (36 lines) | stat: -rw-r--r-- 938 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
oldsave           Scilab Group           Scilab Function            oldsave
NAME
   oldsave - saving variables in 2.4.1 and previous format
  
CALLING SEQUENCE
 oldsave(filename [,x1,x2,...,xn])
PARAMETERS
 filename   : character string or a logical unit returned by
            file('open',...)
            
 xi         : arbitrary Scilab variable(s) 
            
DESCRIPTION
   The oldsave function is obsolete and is retained only for compatibility
  purpose.
  
    The oldsave command can be used to save Scilab current variables  in
  binary form in a file.
  
   oldsave(filename) saves all current variables in the file defined by 
  filename.
  
   oldsave(file-name,x,y) saves only named variables x and y.
  
   Saved  variables can be reloaded by the load or oldload command.
  
EXAMPLES
 a=eye(2,2);b=ones(a);
 oldsave('TMPDIR/val.dat',a,b);
 clear a
 clear b
 oldload('TMPDIR/val.dat','a','b');
 
SEE ALSO
   load, file