Part of Matlab's GUIDE environment and also usable as standalone figure type to display and manipulate results in form of a table
Questions tagged [matlab-uitable]
129 questions
1
vote
1 answer
Does MATLAB allow a uicontrol button to be placed within a cell in a uitable?
I want to place a uicontrol button in each row of a uitable. Does MATLAB have the native functionality for this, or do I need to use Java/HTML?

Doresoom
- 7,398
- 14
- 47
- 61
0
votes
1 answer
Can I have multi-line column headings for uitables?
I am using MATLAB Student Version R2011a. I am creating a GUI-table to compare data easier, but I end up in complicated abbreviations, because I don't know how to make multi-line column headings.
I create the table like this (minimal…

Lukas
- 2,330
- 2
- 22
- 31
0
votes
1 answer
Excel header title from html code in Matlab
I have an uitable whose header's title (variable "header") uses html code. I want to export the uitable data (included its header) to an Excel spreadsheet. This is the code written for this task:
%# header = get(htable,'ColumnName');
header =…

julianfperez
- 1,726
- 5
- 38
- 69
0
votes
1 answer
uitable cannot be properly displayed after compilation
I have a uitable embedded in a GUI with cell structure, and it is editable.
Everything works fine within Matlab environment, but after compilation, the uitable only displays blank. It is still editable, but simply nothing shows up in the GUI.
P.S: I…

newbie
- 275
- 1
- 3
- 15
0
votes
0 answers
Matlab Filter using UItables
I am trying to create a function so that when I add a value to an edit field and push a button, only certain data displays from my data table. Like a filter. Please help. I am new to MATLAB. Thank you!
t = readtable('us-states.xlsx');
…

Shone118
- 61
- 1
- 1
- 7
0
votes
0 answers
How can I select a cell in a UITable by clicking a corresponding plotted point in a figure?
I have a UITable storing 2d points and three pieces of data for each point. I have plotted the 2d portion of the data from this table in a figure.
What I need to do is select the row of the table that corresponds to a clicked point. For example: if…

roger
- 55
- 1
- 8
0
votes
0 answers
How we can scroll uitable in appdesigner of matlab by programming?
I have created a 100×100 table by default only 20×20 cell of table is shown, also I have an editfeild component when user input :goto AA20 or other select cells the view of table will change and will show that cell and cells around it
Like…
user12020596
0
votes
1 answer
How to show details of active cell ina a lable component of appdesigner in matlab?
I have created an app.UITable I choose A1(cell(1,1)) as the default active cell and I want to show it in a Lable and change it by some inputs.
I tried :
function UITableCellSelection(app, event)
indices = event.Indices;
…

Learner
- 39
- 6
0
votes
1 answer
How to set size of table in appdesigner in matlab?
I'm trying to build a 100*100 table in appdesigner, exactly like uitable(figure,100,100) in Matlab command
but in appdesigner I can not set the size of the table. I am in deep need of help to fix it.thanks

Learner
- 39
- 6
0
votes
1 answer
How to center-justify uitable columns in matlab?
How can I center-justify a column (strings and numbers) in a uitable? It's for presentation, so it is okay to "fake it" by padding it with spaces. (Using R2018a.)
% construct simple table as example %
t =…

a11
- 3,122
- 4
- 27
- 66
0
votes
1 answer
Why is the uitable element in my GUI occasionally missing in MATLAB?
I am trying to display on a GUI a table that shows a comparison between two columns and based on this info, a user can select one of two options (buttons). I have been able to make this GUI, and it functions fairly well, but for some reason the…

Akhil
- 1
- 1
0
votes
1 answer
how can I save edited uitable?
Within a function I've programmatically created an editable uitable with a plot. Whenever the cell values change, the plot updates. I'd like to set the new edited table as the output. My code so far:
function outputTable = begrenzung()
t =…

Eve2020
- 1
0
votes
1 answer
Content of a uitable is not being saved
I'm trying to write a GUI for several purposes, that looks like this,
one of them is create a matrix based on user input via a uitable, so in the untitled_OpeningFcn it was predefined the size and enabled the cell…

riccs_0x
- 201
- 2
- 17
0
votes
1 answer
How to use popup menu and uitable?
I have a popup menu and a table. Popup menu is to select a generator that will be used by the user. For example if the user wants to use 2 generators, then the user may select '2 'on the popup menu. If the user select 2, then the table will be…

Raymond
- 1
- 2
0
votes
1 answer
Setting and getting with uitable
I'm creating a Nx3 uitable since it seems much easier than multiple text-edits when N is high. I initialised the columns as cell array in order to initially obtain an 'empty' table.
hinitial = cell(N,1);
hfinal = cell(N,1);
hporosity =…

Jack
- 41
- 6