Load txt data into popupmenu
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
jose bernardo
am 21 Nov. 2013
Kommentiert: Walter Roberson
am 12 Feb. 2018
Hello:
I have a txt like this:
1
2
3
4
And I would like to load this 4 lines into a popupmenu (popupmenu1).
How can I would do this??
Thanks for your attention.
2 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 21 Nov. 2013
a=num2cell((1:5)')
set(handles.popupmenu1,'string',a)
2 Kommentare
SYED AZHAR
am 12 Feb. 2018
if u have text file like above and i want to populate into popup menu then how ?
Walter Roberson
am 12 Feb. 2018
a = num2cell( load('TheTextFile.txt') );
set(handles.popupmenu1, 'string', a);
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!