Align text in uitable using GUIDE

2 views (last 30 days)
Hi Can anyone provide a script for me to alling in the middle of a uitable, a matrix(3x4) of format double. example a = [3 2 1 4; 5 6 7 8; 9 10 11 12]; Also, i would like to know if it is possible to use in the same uitable, a collumm formed by string, and the rest numerical
  2 Comments
Jan
Jan on 27 Jan 2018
I do not understand the question. What is "alling"?
Victor Dalosto
Victor Dalosto on 27 Jan 2018
Edited: Victor Dalosto on 28 Jan 2018
Sorry, i meant align. I want to align the text in the center of the column. is it possible?

Sign in to comment.

Accepted Answer

Jan
Jan on 27 Jan 2018
Yes, of course a column can contain strings and another doubles:
figure;
uitable('Data', {'hello', 2; 'there', 3})
Look at the examples in:
doc uitable

More Answers (1)

Walter Roberson
Walter Roberson on 28 Jan 2018
However, notice that the solution I gave there seems to have a problem if you change the width of the cell. If your text is wide enough that you would want to change the width of the cell, you might have difficulty.

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!