app designer says cosd "undefined function"

cosd not working in app designer. it works fine in matlab just not in the app designer. app designer says "undefined funtion"

5 comentarios

Sean de Wolski
Sean de Wolski el 1 de Feb. de 2019
Can you show the full error message?
I wonder if it might have been something along these lines:
cosd(uint8(1))
Undefined function 'cosd' for input arguments of type 'uint8'.
Isaac O'Neal
Isaac O'Neal el 1 de Feb. de 2019
Undefined function 'cosd' for input arguments of type 'matlab.ui.control.NumericEditField'.
Geoff Hayes
Geoff Hayes el 1 de Feb. de 2019
Isaac - please show us how you are using/calling cosd. It sounds like you are passing in a control rather than a (numeric) angle.
Isaac O'Neal
Isaac O'Neal el 1 de Feb. de 2019
Screen Shot 2019-01-31 at 6.03.26 PM.png

Iniciar sesión para comentar.

 Respuesta aceptada

Geoff Hayes
Geoff Hayes el 1 de Feb. de 2019
Isaac - you are obtaing the angle as
angle = app.Angle;
where presumably Angle is the handle to the matlab.ui.control.NumericEditField and so is not the angle itself. You may need to do someting more like
angle = app.Angle.Value;
to get the value of the angle. (I'm assuming that since this is a NumericEditField, you don't have to convert the above from a string to a number.)
Note that if the above works, you will need to do the same for the initial population and initial velocity.

Más respuestas (0)

Categorías

Más información sobre Install Products en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 1 de Feb. de 2019

Respondida:

el 1 de Feb. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by