mtlb_save

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 whichhave 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 Zsaves variables X, Y, and Z.
mtlb_save fname X Y Z -asciiuses 8-digit ASCII form instead of binary.
mtlb_save fname X Y Z -ascii -doubleuses 16-digit ASCII form.
mtlb_save fname X Y Z -ascii -double -tabsdelimits with tabs.
"stdio" value for fname doesnt redirect save to standard output.

See also

mtlb_load, save, load