Put array in ListBox to choose different values for plot/ App Designer

10 次查看(过去 30 天)
Hi,
I want to put all these values in the array G into my ListBox, but it doesn't show up.
My array "zR" has different sizes.
My purpose for the ListBox is to choose a number and show in my plot different lines. I am also open to other solutions besides the ListBox for my purpose.
Thank you in advance !
app.ListBox.Items=num2str(zR)
app.ListBox.ItemsData=num2str(zR)

回答(1 个)

Mario Malic
Mario Malic 2020-12-10
Hello,
No need to assign ItemsData. Try this
app.ListBox.Items=num2str(zR(:))
  4 个评论
Henry Tran
Henry Tran 2020-12-12
It appears an error after entering your suggestion:
"Error using matlab.ui.control.internal.model.AbstractStateComponent/set.Items (line 184)
'Items' must be a 1-D cell array of character vectors or a string array."
I figured the solution for my problem:
app.ListBox.Items = num2cell(num2str(zR),2)
Anyway thank you for your help !

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Pie Charts 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by