Skip to content
This repository was archived by the owner on May 21, 2020. It is now read-only.
Florian Rappl edited this page Dec 21, 2014 · 2 revisions

save

Saves variables from memory in the filesystem.

save(fileName)

Saves all variables that are currently available.

Argument fileName

String

Returns 1. entry

Void

Example

save("myfile.mat")

Saves all variables in the file myfile.mat.

save(fileName,args)

Saves the specified variables in the file.

Argument fileName

String

Argument args

Arguments

Returns 1. entry

Void

Example

save("myfile.mat", "x", "y")

Saves the variables x and y in the file myfile.mat.

Clone this wiki locally