How to save the 60 value in two columns as a csv file?
Show older comments
for example
Start_point end_point
545 7679
778 566
454 434
untile to 60 rows
saving this table above as a csv file format
Answers (1)
If x and y are of size 60x1 why not just use:
writematrix([x, y],'ndnd.csv');
instead of a for loop?
Categories
Find more on Text Files 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!