storage of parameters edit fields( numeric) in App designer
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Palma Errico
am 22 Feb. 2021
Kommentiert: Palma Errico
am 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 Kommentare
Akzeptierte Antwort
Mario Malic
am 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
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!