File: oldload.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 (32 lines) | stat: -rw-r--r-- 893 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
oldload           Scilab Group           Scilab Function            oldload
NAME
   oldload - load saved variable in 2.4.1 and previous formats
  
CALLING SEQUENCE
 oldload('file-name' [,x1,...,xn])
PARAMETERS
 file-name  : character string
            
 xi         : arbitrary Scilab variable name(s) given as strings.
            
DESCRIPTION
   The oldload function is obsolete and is retained only for compatibility
  purpose.
  
   The oldload command can be used to reload in the Scilab session variables
  previously saved in a file with the save command.
  
   oldload('file-name') loads the variables saved in file 'file-name'. 
  
   oldload('file-name','x','y',...,'z') loads only variables x,y,...,z
  stored in file 'file-name'. 
  
EXAMPLES
 a=eye(2,2);b=ones(a);
 oldsave('TMPDIR/vals.dat',a,b);
 clear a
 clear b
 oldload('TMPDIR/vals.dat','a','b');
SEE ALSO
   save, getf