필터 지우기
필터 지우기

How do I write to a .txt file?

조회 수: 2 (최근 30일)
Jake
Jake 2014년 1월 25일
답변: Walter Roberson 2014년 1월 25일
I need to write to a .txt file.
Thank you for your help.

답변 (2개)

Walter Roberson
Walter Roberson 2014년 1월 25일
fid = fopen('YourFile.txt', 'wt');
fprintf(fid, 'Jake said: %f\n', sqrt(1:10));
fclose(fid);

G PRAKASH
G PRAKASH 2014년 1월 25일
use dlmwrite command
I=magic(10); dlmwrite('file.txt',I)

카테고리

Help CenterFile Exchange에서 Low-Level File I/O에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by