HOW can I export table in latex outside to desktop?
4 ビュー (過去 30 日間)
古いコメントを表示
Shreen El-Sapa
2023 年 12 月 29 日
コメント済み: Sulaymon Eshkabilov
2023 年 12 月 29 日
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!