엑셀 파일의 텍스트 데이터를 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!