how to create ascii file using loop
显示 更早的评论
I have four generated file under headings X,Y,Z and T how do I create ascii file using LOOP
1 个评论
Wan Ji
2021-8-19
Why not use writetable?
myTable = table(X(:),Y(:),Z(:),T(:));
writetable(myTable, 'mytable.txt');
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!