HOW can I export table in latex outside to desktop?

4 ビュー (過去 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 Center および File ExchangeLaTeX についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by