HOW can I export table in latex outside to desktop?

조회 수: 2 (최근 30일)
Shreen El-Sapa
Shreen El-Sapa 2023년 12월 29일
댓글: Sulaymon Eshkabilov 2023년 12월 29일
How can I get a table from matlab to desktop?

채택된 답변

Sulaymon Eshkabilov
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
Shreen El-Sapa
Shreen El-Sapa 2023년 12월 29일
Thanks
Sulaymon Eshkabilov
Sulaymon Eshkabilov 2023년 12월 29일
Most welcome! Glad to be of some help :)

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by