본문 바로가기

MATLAB/ㄴ 앱 디자이너

Table에 data를 입력할 때, 기존 데이터를 유지하고 새로운 데이터를 추가

 


            % 이전 데이터를 유지하고 새로운 데이터 추가

            if isempty(app.UITable2.Data) % Table이 비어있는 경우
                tb = table(layername, new_thickness ,new_pitch ,new_height,new_fit ,'VariableNames', ["Layer Name", "Thickness", "pitch", "height", "fit"]);

            else

                currentData = app.UITable2.Data;
                newData = table(layername, new_thickness ,new_pitch ,new_height,new_fit ,'VariableNames', ["Layer Name", "Thickness", "pitch", "height", "fit"]);

                tb = [currentData; newData ];

            end