HOW can I export table in latex outside to desktop?
3 次查看(过去 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!