Filter löschen
Filter löschen

How can I load a saved .mat to restore an app state? (or alternative!)

3 Ansichten (letzte 30 Tage)
Jack Callaghan
Jack Callaghan am 5 Mär. 2019
Kommentiert: Jack Callaghan am 24 Mai 2022
I am writing an app for some data analysis, and for development reasons I want to be able to load a "saved state" whereby the app object restores to the version in a saved .mat file. My understanding is that it is possible to load a .mat and save fields from it (here, and here), however when I try this the uifigure objects do not become populated. Is there a way to restore an app in the way I have described? Or am I doing something fundamentally wrong?
I am using R2018b and App Designer.
Saving the .mat:
function SaveState(app)
name = inputdlg('Save name:');
save([cd,filesep,name{1},'.mat'],'app')
end
Loading the .mat is referenced in startupFcn:
function app = LoadState(app)
name = uigetfile('*.mat');
opened = load(name);
openf = fields(opened);
for i = 1:numel(openf)
app.(openf{i}) = opened.app.(openf{i});
end
end
  3 Kommentare
Magnus Hök
Magnus Hök am 24 Mai 2022
...also tried:
K>> save('tst','-struct','app')
Error using save
The argument to -STRUCT must be the name of a scalar structure
variable.
K>>
Jack Callaghan
Jack Callaghan am 24 Mai 2022
Hi Magnus.
No, I didn't solve it.
Instead, I created a 'save' function which wrote information to a custom delimited text file, which I can then open using a 'load' function which populates the app. I could link the 'load' function to the app startup but it is more conveient for me to open the app then choose which state to load.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Vijaya Lakshmi Chagi
Vijaya Lakshmi Chagi am 13 Mär. 2019
The following answer may help you

Kategorien

Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by