HOW can I export table in latex outside to desktop?
조회 수: 2 (최근 30일)
이전 댓글 표시
How can I get a table from matlab to desktop?
댓글 수: 0
채택된 답변
Sulaymon Eshkabilov
2023년 12월 29일
Just to write or export imulation date from MATLAB into external application can be attained with writetable(), e.g.:
run('table1.m');
FName = 'MY_table.xlsx'; % Define the filename and path
writetable(T, FName);
winopen(FName)
If the latex is necessary to embed then this one is a good function:
댓글 수: 2
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 LaTeX에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!