Put array in ListBox to choose different values for plot/ App Designer
8 ビュー (過去 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)

0 件のコメント
回答 (1 件)
Mario Malic
2020 年 12 月 10 日
Hello,
No need to assign ItemsData. Try this
app.ListBox.Items=num2str(zR(:))
4 件のコメント
参考
カテゴリ
Help Center および File Exchange で Pie Charts についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!