Effacer les filtres
Effacer les filtres

HOW can I export table in latex outside to desktop?

10 vues (au cours des 30 derniers jours)
Shreen El-Sapa
Shreen El-Sapa le 29 Déc 2023
How can I get a table from matlab to desktop?

Réponse acceptée

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 29 Déc 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 commentaires
Shreen El-Sapa
Shreen El-Sapa le 29 Déc 2023
Thanks
Sulaymon Eshkabilov
Sulaymon Eshkabilov le 29 Déc 2023
Most welcome! Glad to be of some help :)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur App Building dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by