Matlab gui 怎样让text文本框显示多行

<<

text=uicontrol('style','edit','position',[70 70 300 220],'max',2);%一定要设成2

 

struct=[0 0 0;

1 1 1;

2 2 2];

 

 

struct=num2str(struct);%转成字符才能隔行显示

set(text,'string',struct)

你可能感兴趣的:(String,struct,matlab)