What should I do to display some information multi-line on the static text in the GUI?

2 次查看(过去 30 天)
I want to display some information on the static text compoment in the multi-line on the GUI.I use the loop:
for i = 1:5
str = sprintf('the number of %d is completely',i);
set(handles.myStaticText, 'String', str);
end
But the line will be erased by the next line.WHat should I do if I want to display in multi-line?

采纳的回答

ES
ES 2013-12-12
if you want to append to existing string, get the string first and then append required data and display it. Example:
for i = 1:5
old_str=get(handles.text1, 'String');
tmp_str=['the number of',num2str(i),' is completely'];
new_str=[old_str; {tmp_str}];
set(handles.text1, 'String', new_str);
end
  2 个评论
reema
reema 2014-6-1
if i want to get information about person from database.and want to display on GUI then what we can do? like in (detection and recognition system).want to display the information about the recognized person on GUI then what me do? in matlab r2013a

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 String Parsing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by