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 views (last 30 days)
  
       Show older comments
    
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);
Accepted Answer
  Voss
      
      
 on 7 Dec 2023
        T=table(sigma(:),x(:),res(:),dist(:),k(:),p(:), ...
    'VariableNames',{'sigma','x','res','dist','k','p'});
csvFile = 'table_data.csv';
writetable(T, csvFile);
4 Comments
More Answers (0)
See Also
Categories
				Find more on MATLAB Report Generator in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


