how to align text in a table cell

8 ビュー (過去 30 日間)
tou
tou 2011 年 6 月 1 日
hay I create a table in a GUI, this table contains data. that aligns the center of cells, so how I want to align text left in the cell
  2 件のコメント
Oleg Komarov
Oleg Komarov 2011 年 6 月 1 日
Do you want to align numbers or strings to the left?
Can you provide an example of what you've done?
tou
tou 2011 年 6 月 4 日
align string

サインインしてコメントする。

回答 (3 件)

Jan
Jan 2011 年 6 月 4 日
The display of your above text looks very strange in my browser. A picture would be better.
Because the Matlab UITABLE does not offer a method to alighn text, you could try: FEX: Java-Table

Walter Roberson
Walter Roberson 2011 年 6 月 1 日
Set the format for that column to '%15s' or whatever you want the width to be. Strings which are shorter than that number will be right-padded with spaces.
  2 件のコメント
tou
tou 2011 年 6 月 4 日
exemple please
Walter Roberson
Walter Roberson 2011 年 6 月 4 日
set(handles.uitable, 'ColumnFormat', {'char',[],[],[]} );

サインインしてコメントする。


tou
tou 2011 年 6 月 4 日
I use a guide to realize my ihm, and I put the following code :
rowHeaders = {'piyavskii','evtushenko passif','evtushenko itiratif','brent','branch & bound piyavskii'};
columnHeaders = {'nombre d evaluation','argmin f(x)','min f(x)','temps execution'};
set(handles.uitable,'RowName',rowHeaders);
set(handles.uitable,'ColumnName',columnHeaders);
set(handles.uitable,'data',M );% M is matrix
here our results:
-------------------------------------------------------------------------
| nombre d evaluation | argmin f(x) ...
------------------------------------------------------------------------
piyavskii |
-------------------------------------------------------------------
evtushenko passif |
-------------------------------------------------------------------
.
. |
----------------------------------------------------------------
branch & bound piyavskii |
---------------------------------------------------------------
but I want the results like this:
-------------------------------------------------------------------------
| nombre d evaluation | argmin f(x) ...
------------------------------------------------------------------------
piyavskii |
-------------------------------------------------------------------
evtushenko passif |
-------------------------------------------------------------------
.
. |
----------------------------------------------------------------
branch & bound piyavskii |
---------------------------------------------------------------
how ? thank you.

カテゴリ

Help Center および File ExchangeLaTeX についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by