Using variable value to name a folder
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hi, i have a variable called Name in workspace and would like to save a table to csv using the Name value. Example: Name=4205; writetable(T,?????);
name of output file should be 4205.csv
thanks!
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 25 Avr 2016
Modifié(e) : Azzi Abdelmalek
le 25 Avr 2016
Name=4205;
writetable(T,sprintf('%d.csv',Name));
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Tables 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!