I am trying to allow the user of my software to save all the base workspace variables into a mat* file, however I'm not sure how to accomplish this using 'uisave'.
Is there a better way to do this than calling every single workspace variable manually using evalin('base', 'var') and creating a list of strings to input as an argument into uisave?
evalin('base','save fname')?save fnamesaves all locally visible variables. Executing that statement within the base workspace would save all variables visible there. - Cris Luengo