엑셀 파일의 텍스트 데이터를 matlab appdesigner 의 UITable로 불러 들일 때 엑셀에 적용되어 있는 줄 바꿈 사항을 matlab에도 적용하는 방법
이전 댓글 표시
엑셀 파일의 텍스트 데이터를 matlab appdesigner 에서 readtable 로 불러 들인 후 UITable app 으로 출력하려고 합니다.
하지만 엑셀 파일의 텍스트 데이터에 적용되어 있는 줄 바꿈 사항이 UITable에는 적용되지 않고 가로로 나열되고 있어 어떻게 하면 좋을 지 질문 드립니다.
function LoadButtonPushed(app, event)
[Fn,Fp]=uigetfile('*.*');
UITable_data = readtable(fullfile(Fp,Fn),'Sheet','sheet1');
app.UITable.Data = UITable_data;
end
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 스프레드시트에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!