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!