Put array in ListBox to choose different values for plot/ App Designer
Ältere Kommentare anzeigen
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)

Antworten (1)
Mario Malic
am 10 Dez. 2020
Hello,
No need to assign ItemsData. Try this
app.ListBox.Items=num2str(zR(:))
4 Kommentare
Henry Tran
am 10 Dez. 2020
Bearbeitet: Henry Tran
am 10 Dez. 2020
Mario Malic
am 10 Dez. 2020
As mentioned in the error 'Items' must be a 1-D cell array of character vectors or a string array.
Try this
app.ListBox.Items = mat2cell(a(:), ones(size(a)), 1)
Henry Tran
am 12 Dez. 2020
Mario Malic
am 12 Dez. 2020
Great that you've figured it out yourself!
Kategorien
Mehr zu Pie Charts finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!