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
0
votes
2 answers
Appending data to GUI table
I have program to display data in a uitable:
data_plat = load('Data_Plat.mat');
Database_All = data_plat.Database_All;
data2 = table2cell(Database_All(strcmpi(Database_All.Plat, final_output), ...
…

Yusran Mansyur
- 25
- 7
0
votes
1 answer
Stop scientific notation in uitable
I use GUIDE to create a uitable and load data into it, which looks like:
My question is: How to display the numbers without using scientific notation?
I have tried this but failed:
format long g
set(handles.uitable1,'Data',data)
Furthermore,…
0
votes
2 answers
TeX Interpreter in Matlab uiTable
I have created an uiTable in Matlab. Now I need to write column headers and some cell data, which contain greek letters and subscripts. In text objects or plots I would just enable the TeX interpreter - or it is even the default setting. This does…

monoceros84
- 86
- 8
0
votes
1 answer
Uitable matlab with drop down menu
I have create uitable in Matlab with drop downmenu.
somehow the drop down menu doesn't get updated with switch/case
I tried substituting the switch/case with if else condition.
the drop down menu gets updated but it doesn't give me the desired…

sssc
- 1
- 2
0
votes
1 answer
Matlab: How to add data to specific row number in a uitable
Question 1
I wrote a gui code that gives the following row which is then made to display on a uitable:
combt =
Columns 1 through 5
2000 2530.4 2671.4 2.3 2.6
This row will be automatically added to row 1 in the uitable:
In my example…

Mosawi
- 197
- 2
- 16
0
votes
1 answer
MATLAB - uitable scrollbar visibility
Is it possible to set the visibility of a Matlab uitable vertical scrollbar to display at all times, and if so, how?
When the table's row height * number of rows is less than the total uitable height, no scroll bar is displayed, and there is…

eNc
- 1,021
- 10
- 23
0
votes
1 answer
Button in Matlab GUI Table Cell
Is there a way to add a button in table cell in Matlab GUI so that each button can perform action depending on which row its in?
Sample of What I am trying to make

Leo
- 11
- 5
0
votes
0 answers
Sorting a cell array with multiple datatypes in uitable using push button
I have a table of data in an uitable inputted by the user. There're 3 columns: Isotope, A and T_1/2. the Isotope column receive isotope names as strings while A and T_1/2 only receive numbers. An example of the table is like this (these are inputted…

tâm nguyễn công
- 41
- 2
0
votes
1 answer
MATLAB callback on pushButton to make an uitable visible: Programatic Workflow
I am developing a program in which data needs to be displayed continously on the UI. I also have other modules to display, so I should be able to hide the table, while the script is running. My solution is to create an uitable that calls my script…

Mana V
- 77
- 1
- 11
0
votes
1 answer
A popup menu that is linked to a uitable that changes with each option on the popup menu (Matlab)
I've created GUI that has a popup menu with several options (mouse 1 - mouse 10) in it to choose from, and also created a uitable next to it. The popup menu has several options to choose from.
I want to link between the popup menu and the uitable so…
0
votes
0 answers
matlab uitable has poor quality when saving pdf
I'm creating a table to put in an image. when I save a pdf. file (or png for that matter), the plots have nice quality but the table is supper bad (see image 1, a close up). It looks fine on matlab (image2)
How can I overcome this?

Carollour
- 75
- 2
- 10
0
votes
0 answers
Update columns in UItable with timer in Matlab
I have a UItable with the 4 first columns that are being updated every 1 second with some external logger data. I would like to have a 5 column with a logical select column, so I could select which instruments to display.
The problem is the timer…

k4lls
- 141
- 3
- 12
0
votes
0 answers
Update uitable using guide
I have a uitable that I set manually initial values and I have two buttons, so when a user pushes a button, the buttons call a function that I have created and do some values and I want to send that values to the uitable inside of main.m and update…

user3312370
- 45
- 1
- 8
0
votes
1 answer
Align to the right values in uitable after formatting with html code
I have an annoying problem with Matlab coding: I have created a uitable which store values and I have implemented a function for highlight the number in cells in particular conditions. This has been done giving an html command, the problem is that…

user4519587
- 1
- 1
0
votes
1 answer
Using Java to customize uitable with hashtable
For customizing uitable there are a lot of good tips on http://undocumentedmatlab.com/.
So I was trying to realize individual format for every cell of a table, as described in chapter 4.1.1 in undocumentedmatlab author's book.
Unfortunately I do not…

Tanja Lange
- 31
- 4