HOW can I export table in latex outside to desktop?

4 次查看(过去 30 天)
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:

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 App Building 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by