Inserting a 0 before a number and use of a comma in a cell of a uitable

1 次查看(过去 30 天)
I'm using GUIDE to make a user interface. The user inputs values for the number of points in the u direction and for the v direction. This will create a table u by v. In each cell of this table I want to be able to enter in 3 numbers with comma's separating the numbers. These correspond to (x,y,z) coordinates. When I try to use a comma to separate the numbers, the comma disappears. So instead of getting 1,2,3 I get 123. Also, I would like to use 0 in front of numbers. For example, right now if I use 0,1,2 I get 12. This table is created in a new figure. I would really like to have a window appear that just contains the table and now menu options. For now I'm creating the table in a new figure.

回答(1 个)

Walter Roberson
Walter Roberson 2012-2-14
In order to use commas or leading zeros in uitable, the cell has to be marked as being of type string rather than anything numeric.
uitable does not inherently create a new figure, not if there is an existing figure that is the focus. On the other hand, if there is not existing figure or no figure is currently the focus and the uitable is not parented against an existing figure or uipanel, then a new figure would be created to hold the uitable.
  2 个评论
Harold
Harold 2012-2-15
I tried looking around the internet on how to change the cell types to string. I can't seem to find anything.
And as for the figure. I would like to not use the figure to display the table but rather display it in a new GUI, which I called table.m. Would I just take the inputs from the main GUI and pass them into the table GUI to create the table?
Harold
Harold 2012-2-15
I figure out how to display the table in another GUI. I am still having problems setting the columns to accept leading zeros and comma's.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by