storage of parameters edit fields( numeric) in App designer

3 visualizzazioni (ultimi 30 giorni)
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?

Risposta accettata

Mario Malic
Mario Malic il 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 Commento
Palma Errico
Palma Errico il 22 Feb 2021
thank you very much, I was working in the startupFCN but couldn't solve the problem. Your answer was very helpful

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange

Prodotti


Release

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by