When I export results to a text file or csv etc, it is written in only one line, how do I make that it appear in columns?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Samuel Tárraga Habas
il 7 Dic 2023
Modificato: Stephen23
il 8 Dic 2023
Hello!
sigma, x, res... are all 10 dimensional vectors that I want them to appear in different columns. When I run the code everything in the txt file is in one line, separated with comas.
T=table(sigma,x,res,dist,k,p);
csvFile = 'table_data.csv';
writetable(T, csvFile);
Risposta accettata
Voss
il 7 Dic 2023
T=table(sigma(:),x(:),res(:),dist(:),k(:),p(:), ...
'VariableNames',{'sigma','x','res','dist','k','p'});
csvFile = 'table_data.csv';
writetable(T, csvFile);
4 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su MATLAB Report Generator 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!