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!