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

4 vues (au cours des 30 derniers jours)
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!

Réponse acceptée

Cris LaPierre
Cris LaPierre le 7 Mai 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;

Plus de réponses (0)

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by