Why do I keep getting this error in my app designer?

1 vue (au cours des 30 derniers jours)
Hind Aljallaf
Hind Aljallaf le 13 Mai 2023
Modifié(e) : Hiro Yoshino le 14 Mai 2023
I keep getting this error for a reason I am not sure off. I did train my folder, and I also made sure to input the correct name for the file within the code. What am I doing wrong? What does this error mean?
this is how the application looks like incase you might need it.
  1 commentaire
Simon Chan
Simon Chan le 13 Mai 2023
Just have a quick look, the name of the function should be strcmp instead of strcmps

Connectez-vous pour commenter.

Réponses (1)

Hiro Yoshino
Hiro Yoshino le 14 Mai 2023
Modifié(e) : Hiro Yoshino le 14 Mai 2023
(1) This might be irrelevant ... You should change "ans" to something else since ans is already taken.
(2) strcmp, "string" is redundant.
myAns = "tulip";
if (strcmp(myAns,"tulip"))
app.Lamp.Color = "Pink";
elseif(strcmp(myAns,"sunflower"))
app.Lamp.Color = "Purple";
end
Another approach is using "switch".

Catégories

En savoir plus sur Environment and Settings 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