Azzera filtri
Azzera filtri

HOW can I export table in latex outside to desktop?

10 visualizzazioni (ultimi 30 giorni)
How can I get a table from matlab to desktop?

Risposta accettata

Sulaymon Eshkabilov
Sulaymon Eshkabilov il 29 Dic 2023
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:

Più risposte (0)

Categorie

Scopri di più su App Building in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by