필터 지우기
필터 지우기

How can I add and remove a specific row from a Table in the GUI?

조회 수: 2 (최근 30일)
Jorge  Alvarado
Jorge Alvarado 2016년 12월 12일
댓글: Jorge Alvarado 2016년 12월 15일
How can I add and remove a specific row from a Table in the GUI?

답변 (1개)

KSSV
KSSV 2016년 12월 15일
clc; clear all ;
LastName = {'Smith';'Johnson';'Williams';'Jones';'Brown'};
Age = [38;43;38;40;49];
Height = [71;69;64;67;64];
Weight = [176;163;131;133;119];
BloodPressure = [124 93; 109 77; 125 83; 117 75; 122 80];
T = table(Age,Height,Weight,BloodPressure,...
'RowNames',LastName) ;
K = T ;
%%Say I want to remove the third row
K(3,:) = []
  댓글 수: 2
David Barry
David Barry 2016년 12월 15일
I assumed from the GUI comment that they were talking about uitable not a table data type.
Jorge  Alvarado
Jorge Alvarado 2016년 12월 15일
thanks for your comments yes I was referring to add a new blank row after a specific row. The code I use is this:
datos=get(handles.uitable1, 'data');
ina=size(datos,1);
datos(ina+1,:)={''};
set(handles.uitable1, 'data', datos);
but in this case The new row is added after the last row of the table. And I would like for example to be added after the row 3. ?????

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

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by