Scilab Function

save - saving variables in binary files

Calling Sequence

save(filename [,x1,x2,...,xn])
save(fd [,x1,x2,...,xn])

Parameters

Description

The save command can be used to save Scilab current variables in a binary file. The file can be given either by its paths or by its descriptor previously given by mopen.

save(filename) saves all current variables in the file defined by filename.

save(fd) saves all current variables in the file defined by the descriptor fd.

save(filename,x,y) or save(fd,x,y) saves only named variables x and y.

Saved variables can be reloaded by the load command.

Examples

See Also