I am trying to add two numbers in App designer code view and i am getting following error message
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
UDITA PANT
il 15 Apr 2019
Commentato: Joriel Jade Festin
il 31 Mag 2022
% Callback function: Button, EditField3
function ButtonPushed(app, event)
a = app.EditField;
b = app.EditField2;
c= a + b;
app.EditField3 = c;
I am getting the following error.
Undefined function 'plus' for input arguments of type 'matlab.ui.control.NumericEditField'.
0 Commenti
Risposta accettata
Dennis
il 15 Apr 2019
You need to access the value stored in your edit fields:
a = app.EditField.Value;
b = app.EditField2.Value;
c= a + b;
app.EditField3.Value = c;
2 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!