HOW can I export table in latex outside to desktop?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Shreen El-Sapa
am 29 Dez. 2023
Kommentiert: Sulaymon Eshkabilov
am 29 Dez. 2023
How can I get a table from matlab to desktop?
0 Kommentare
Akzeptierte Antwort
Sulaymon Eshkabilov
am 29 Dez. 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:
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu LaTeX finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!