storage of parameters edit fields( numeric) in App designer

1 vue (au cours des 30 derniers jours)
Palma Errico
Palma Errico le 22 Fév 2021
Commenté : Palma Errico le 22 Fév 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?

Réponse acceptée

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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by