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

4 visualizaciones (últimos 30 días)
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!

Respuesta aceptada

Cris LaPierre
Cris LaPierre el 7 de Mayo de 2020
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;

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by