How can I use a function to save main workspace variables?

1 view (last 30 days)
I have a function that saves my figures as .fig with customized parameters in a subfolder with the same name of the figure: save_fig_cust('name_of_file'). I want this function also save all variables in the workspace to a file in the same folder. However, when I run the function, it sees only its own workspace and not the main workspace.
How can a function save the main workspace? Thanks guys, Gerrard

Accepted Answer

Walter Roberson
Walter Roberson on 24 Jan 2016
evalin('base', 'save(''name_of_file.mat'')')
  3 Comments
Walter Roberson
Walter Roberson on 24 Jan 2016
filename = 'name_of_file'
evalin('base', sprintf('save(''%s.mat'')', filename))

Sign in to comment.

More Answers (0)

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!