MATLAB: How to display string of matrix in one edit text

displayedit textgui

I need display matrix which can contains Any number of vector in one edit text, how I can display it simply? Thanks.

Best Answer

a={'somename';'diffname';'something'};
set(handles.EditBox, 'Max', 2, 'String', a);