Error popup: "Undefined function 'cosd' for input arguments of type 'matlab.ui​.control.N​umericEdit​Field' "

4 次查看(过去 30 天)
I'm coding a program using Matlab App Designer and when I try to run the program, this error pops up and I am not at all sure what to fix.
The program allows users to input numerical data, push 'start' and the program should analyse this data.
Here is the code giving the error:
and this is how I call the function:
Help would be greatly appreciated!

采纳的回答

Cris LaPierre
Cris LaPierre 2020-5-7
You are passing in handles to the components, not the values they contain. You need to access the specific property of the component that contains the displayed value. You can see a list of components and view their properties here.
For example, for a numericeditfield, you want to use
theta = app.orientationangleEditField.Value;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by