uitableview - Create and display clickable cell of cells in Matlab GUI -
so want display cell matrix in matlab gui. moreover, of cells arrays of cells, , want them clickable , clicking on them activate function.
imagine have cell matrix:
a=cell(2,2); a{1,1}='collumn1'; a{1,2}='collumn2'; a{2,1}={'a','b','c','d'}; a{2,2}={'e','f'}; i want display on gui, , want able click cells, see content of a{2,1}. click cell entries in cell array, , doing so, calculate new matrix of same form display on gui. however, uitable doesn't allow me use cell array.
an alternative have matrix of form:
a=cell(5,2); a{:,1}={'collumn1','a',b',c',d'}; a{:,2}={'numbers',1,2,3,4}; and clicking numbers (which can do) buttongroup display (of undefined size), , selecting 1 calculate new matrix of same form display.
thanks in advance.
short answer: can't
matlab gui provides parse set of possible gui-elements check documentation of matlab gui. need change request, e.g. create uitable or like this. if desire create more advanced stuff in matlab gui's, should start fellas documentation
Comments
Post a Comment