Load txt data into popupmenu

1 次查看(过去 30 天)
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 个评论
fauzan ishaq
fauzan ishaq 2017-1-21
i also search about that please tell hot to do that
Walter Roberson
Walter Roberson 2017-1-21
The Answer given below is fine.

请先登录,再进行评论。

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-11-21
a=num2cell((1:5)')
set(handles.popupmenu1,'string',a)
  2 个评论
SYED AZHAR
SYED AZHAR 2018-2-12
if u have text file like above and i want to populate into popup menu then how ?
Walter Roberson
Walter Roberson 2018-2-12
a = num2cell( load('TheTextFile.txt') );
set(handles.popupmenu1, 'string', a);

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by