how to create ascii file using loop

1 view (last 30 days)
Ls
Ls on 19 Aug 2021
Commented: Wan Ji on 19 Aug 2021
I have four generated file under headings X,Y,Z and T how do I create ascii file using LOOP
  1 Comment
Wan Ji
Wan Ji on 19 Aug 2021
Why not use writetable?
myTable = table(X(:),Y(:),Z(:),T(:));
writetable(myTable, 'mytable.txt');

Sign in to comment.

Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!