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

조회 수: 1 (최근 30일)
Hind Aljallaf
Hind Aljallaf 2023년 5월 13일
편집: Hiro Yoshino 2023년 5월 14일
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
Simon Chan
Simon Chan 2023년 5월 13일
Just have a quick look, the name of the function should be strcmp instead of strcmps

댓글을 달려면 로그인하십시오.

답변 (1개)

Hiro Yoshino
Hiro Yoshino 2023년 5월 14일
편집: Hiro Yoshino 2023년 5월 14일
(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".

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by