Clear Filters
Clear Filters

matlab R2016b standalone gui: start with the approach form the last season

1 view (last 30 days)
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?

Accepted Answer

Jannik
Jannik on 1 Dec 2017
Edited: Jannik on 1 Dec 2017
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;

More Answers (0)

Categories

Find more on Develop Apps Using App Designer 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!