storage of parameters edit fields( numeric) in App designer

1 view (last 30 days)
I have a file where I have stored numeric parameters ('parameters.mat').
My app needs to read the parameters from the 'parameters.mat' file and must associate them with some edit fields (numeric) of App designer .
How can i do this?

Accepted Answer

Mario Malic
Mario Malic on 22 Feb 2021
Hello again,
You can use load function to load the file in startupFcn, an example:
function startupFcn(app)
data = load('parameters.mat');
% data is a struct with fields named by variables in your file
app.EditField.Value = data.VariableName;
end
  1 Comment
Palma Errico
Palma Errico on 22 Feb 2021
thank you very much, I was working in the startupFCN but couldn't solve the problem. Your answer was very helpful

Sign in to comment.

More Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!