Questions tagged [matlab-uitable]

Part of Matlab's GUIDE environment and also usable as standalone figure type to display and manipulate results in form of a table

129 questions
0
votes
1 answer

Extract UITable data to Excel sheet

I am trying to extract data from a uitable I have created and export it into an Excel sheet with the Column Headers along with it. By it keeps throwing an error, stating: Stacktrace: Error using vertcat Dimensions of matrices being concatenated are…
Jeiman
  • 1,121
  • 9
  • 27
  • 50
0
votes
1 answer

uitable with subcolumn headers in matlab

I want to create a uitable with three main columns. The second one should have two subcolumns and the third one three. cnames= {'Material','Rand| Left Right','Snitt| p1 p2 p3'} ; data={'Iron' '2' ' ' '34' '' ''}; uitable('columnname',cnames,... …
0
votes
1 answer

Matlab first row uitable

I have a question regarding inserting data from edit into a table. As it is now, a new row appears with the data that I wrote in the textboxes. My problem is the first row.. it is blank. Thanks in advance function tablerows % Test dynamic addition…
0
votes
1 answer

How to run a callback by pushing something in a uitable?

I have a gui that returns ,by pushing a button, an array of filenames. This array is shown in a figure at a table. I used that code: f=figure('Position',[150 150 700 350]); t=uitable('Parent',f,'Position' ,[25 25 700…
pap-00
  • 45
  • 3
  • 13
0
votes
1 answer

Delete selected rows in uitable

Is there a way to delete a row in uitable using the mouse right click, similar to the way done in excel? I am looking to do so in order to save just the data I want and not all the table.
user1212200
  • 353
  • 1
  • 7
  • 15
0
votes
1 answer

Error with uitable logical format

I am creating a uitable using GUIDE with 4 columns: 1st – Numeric, 2nd – Let Matlab choose, 3rd – Text, Editable, 4th – Logical, Editable. When I run my GUI and try to mark the Logical checkbox I get this error: Warning: Table data is not editable…
user1212200
  • 353
  • 1
  • 7
  • 15
0
votes
1 answer

table2array not working in matlab

In MATLAB, I've created a table with a callback function that is called before it deletes, to save all the information in a file: t=uitable; set(t,'Data',V1); set(t,'ColumnEditable',c); set(t,'DeleteFcn',@closeCallback); waitfor(t); %wait until…
user3273814
  • 198
  • 3
  • 16
0
votes
1 answer

still stuck trying to update rows name of uitable in matlab gui

I am still trying to update the row names of a uitable in a matlab gui. I previously asked you about this (https://stackoverflow.com/questions/21585453/update-rows-name-of-uitable-in-matlab-gui). However, I am writing you again in order to let you…
Hector
  • 275
  • 6
  • 16
0
votes
1 answer

Clickable uitable row title MATLAB

Does anyone know how to make row's titles (grey cells) in a uitable clickable in a Matlab GUI ? I am only able to get clickable cells within the table. Thanks
k4lls
  • 141
  • 3
  • 12
0
votes
1 answer

Matlab Uitable On/Off

Please I have created a gui with two push buttons; one for showing uitable and the other for hiding the uitable. My Problem is that, the Hide push button does not set the uitable's visibility to off. The code I have is shown below. Any help why this…
user2868118
  • 43
  • 2
  • 9
0
votes
1 answer

Matlab: check cell status inside uitable

I wish to create an if statement that will check if a specific cells of a logical column inside a uitable are true or false. Therefore, how can I check the logical cell status (upon clicking a push button, not shown)? Script: % Table c1 =…
lroca
  • 621
  • 2
  • 8
  • 19
0
votes
1 answer

using popupmenu in uitable in matlab

I have created a uitable consists of, say, four columns. colu={{'Sweet' 'Beautiful' 'Caring'},'numeric', 'numeric','numeric'} dat={1 2 3 []; 4 5 6 []; 7 8 9 []}; A=uitable('outerposition',[0 0 1 1],'ColumnFormat',colu,'Data',dat); What I wanted to…
0
votes
1 answer

Display Uitable data in command window in Matlab

I am using a UITABLE to display some data. After displaying the table i want to get the data in command window in matrix form make calculation and again display the result in a tabular form. any 1 pls. help me..
0
votes
1 answer

Dynamic Population of Popup Menu - MATLAB

Another GUIDE question. I created a GUIDE figure with a pop up menu. The elements of the menu are determined dynamically when calling the figure. Example: myGUI(data, popupNames) should be called and then the strings included in popupNames should be…
msmf14
  • 1,449
  • 4
  • 13
  • 19
0
votes
2 answers

Changing the background color of a table cell in matlab using html content

we know that uitable supports html content for an example similar to what I want see here to solve the problem I asked before I used this code in the callback of a button in matlab: color = uisetcolor; numberOfClasses =…
1 2 3
8
9