Using a drop down menu in an App.

2 次查看(过去 30 天)
I tried to use the App tool - the drop down menu. I asked for the .Value in the code view and printed it in the Command line. All that was fine. However when I tried to route the execution using the value: if val == 'name' where name was the value I got errors. I thought the value was a text string, so I do not see how that causes an error. Can you tell me how to use the drop down menu Value properly? I looked in the documentation, but could not find an example of using the drop down. Thanks, in advance.

采纳的回答

Image Analyst
Image Analyst 2019-12-14
To compare strings, use strcmp(), strcmpi(), or contains() depending on how you want to do the comparison. If you use == it will give you an array of true or false values for whether each character matches or not then you'd have to use all() to see if they all match. Plus that doesn't work if they have different lengths. It's better to use strcmpi()
theyMatch = strcmpi(val, name);
  2 个评论
Dan Green
Dan Green 2019-12-14
Thanks - worked like a charm
Image Analyst
Image Analyst 2019-12-17
You're welcome. Can you then "Accept this answer"? Thanks in advance.

请先登录,再进行评论。

更多回答(1 个)

Dan Green
Dan Green 2019-12-17
Thanks for the answer. it worked well.

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by