File: mtlb_save.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 (41 lines) | stat: -rw-r--r-- 1,363 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
41
mtlb_save          Scilab Group          Scilab Function          mtlb_save
NAME
   mtlb_save - save variables on file with matlab4 format.
  
CALLING SEQUENCE
 mtlb_save fname
 mtlb_save fname X
 mtlb_save fname X Y Z 
 mtlb_save fname X Y Z  -ascii
 mtlb_save fname X Y Z  -ascii -double 
 mtlb_save fname X Y Z  -ascii -double -tabs
PARAMETERS
 fname      : a file name
            
 X Y Z      : variable names
            
DESCRIPTION
   mtlb_save   save variables on file with matlab4 formats.
  
 mtlb_save fname saves all the current scilab variables which
                       have corresponding matlab type to the binary "MAT-file" named fname.mat.
                      The data may be retrieved with mtlb_load.
                      
 mtlb_save fname X    saves only variable X.
                      
 mtlb_save fname X Y Z
                         saves variables X, Y, and Z.
                      
 mtlb_save fname X Y Z  -ascii
                       uses 8-digit ASCII form instead of binary.
                      
 mtlb_save fname X Y Z  -ascii -double
                       uses 16-digit ASCII form.
                      
 mtlb_save fname X Y Z  -ascii -double -tabs
                       delimits with tabs.
                      
SEE ALSO
  "stdio" value for  fname doesnt redirect save to standard output.
  mtlb_load, save, load