필터 지우기
필터 지우기

Hide Uitable result in numerical iteration

조회 수: 1 (최근 30일)
Light
Light 2013년 6월 9일
f = figure('Position',[10 10 600 600]);
dat = {-1,1,1;0,-1,0;0,0,-1;1,0,0};
columnHeaders = {'18','29','51'};
rowHeaders = {'12','26','35','44'};
t = uitable('Parent',f,'Data',dat,'ColumnName',columnHeaders,...
'RowName',rowHeaders,'Position',[10 10 590 590]);
My uitable is in loop. How can i hide it . In every iteration it is appeared.
I can't hide it even by ;
  댓글 수: 1
Walter Roberson
Walter Roberson 2013년 6월 9일
Do you want to be creating an additional uitable for each iteration of the loop (e.g., there would be 3 tables after the 3rd iteration), or do you want one single uitable that gets updated at each iteration ?

댓글을 달려면 로그인하십시오.

답변 (1개)

the cyclist
the cyclist 2013년 6월 9일
Add the name-value pair
'Visible','off'
to your list.

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by