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

10 views (last 30 days)
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;

Accepted Answer

Steven Lord
Steven Lord on 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.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!