Undefined function 'times' for input arguments of type 'matlab.ui​.control.N​umericEdit​Field'.

15 Ansichten (letzte 30 Tage)
I am new here I always get these type of UI errors no matter what I do.
I can't seem to do even simple calculations through app. I followed some Youtube tutorials line by line exactly the same for practice, it runs for them but I still get these 'matlab.ui.control.NumericEditField' errors always.
Below given are the simple coding example:
Mass =app.MassKgEditField.Value;
Acc= app.Accms2EditField;
Force = Mass.*Acc;
app.ForceEditField.Value = Force;

Akzeptierte Antwort

Steven Lord
Steven Lord am 1 Nov. 2021
As I answered on your other post, you cannot perform arithmetic on an object handle. You will need to perform arithmetic on the Value property of that handle.

Weitere Antworten (0)

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by