MATLAB: Matlab R2016b standalone gui: start with the approach form the last season

guilog filestandalone

hey i created an gui application and want that the last Approach will be saved until the next start of the program. all values i want to save are double. any possibility? something like a Log File?

Best Answer

i solved it by creating a .mat file including all Settings
global settings %lade die gespeicherten einstellungen
try
sdf = load('customSettings.mat');
catch
sdf = load('defaultSettings.mat');
end
settings = sdf.settings;