필터 지우기
필터 지우기

I have a mx3 matrix which is string format, I'm assigning this matrix by set(handles.listbox, 'String', matrix) into the listbox. How can I change space between the columns?

조회 수: 2 (최근 30일)
matrix= [m,3] %string
set(handles.listbox, 'String', matrix)
in the listbox I wanna put more space between the columns, is that possible?

답변 (1개)

David Sanchez
David Sanchez 2013년 5월 16일
It would be clearer if you gave some extended code. If you have string data, you can add some blank spaces using horzcat():
my_str = 'xxx';
my_str2 = horzcat(my_str,' ');
Use this recursively on your matrix string elements
  댓글 수: 1
sermet
sermet 2013년 5월 16일
for example, string1=abc string2=[3 5] %string but matrix form string3=(string1, string2) I wanna put more space between abc, 3, 5 while I use set(handles.listbox, 'String', string3)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by