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 Comment

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

Asked:

Ls
on 19 Aug 2021

Commented:

on 19 Aug 2021

Community Treasure Hunt

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

Start Hunting!