storage of parameters edit fields( numeric) in App designer
1 view (last 30 days)
Show older comments
Palma Errico
on 22 Feb 2021
Commented: Palma Errico
on 22 Feb 2021
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?
0 Comments
Accepted Answer
Mario Malic
on 22 Feb 2021
Hello again,
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
More Answers (0)
See Also
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!