MATLAB: Save workspace BUT with another name!

MATLABworkspace

Hey all,
I can save all variables in my workspace using this:
save workspace
After that, it saved by the named workspace.mat. I want to know how to save the workspace with another name.
Thank you.

Best Answer

please refer an following URL
save filename
save ('filename')
For example, if you want to save it as 'test', you would write:
save test
or
save ('test')