필터 지우기
필터 지우기

how to create ascii file using loop

조회 수: 2 (최근 30일)
Ls
Ls 2021년 8월 19일
댓글: Wan Ji 2021년 8월 19일
I have four generated file under headings X,Y,Z and T how do I create ascii file using LOOP
  댓글 수: 1
Wan Ji
Wan Ji 2021년 8월 19일
Why not use writetable?
myTable = table(X(:),Y(:),Z(:),T(:));
writetable(myTable, 'mytable.txt');

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by