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,...
'position',[300 0300 300 0200],...
'data',data);
I want the material column to contron Iron, the first subcolumn of Rand should be 2 and the second blank, and so on.
Is there a good way to do this or do I have to use textboxes above the uitable?