필터 지우기
필터 지우기

creating a .res with 2 variables side by side (2 columns)

조회 수: 5 (최근 30일)
lucas
lucas 2013년 10월 23일
댓글: Cedric 2013년 10월 23일
hello... how do i create a .res file with two variables side by side?
ex:
X = 1
2
3
4
 
Y =
1
2
3
4
column 1: colum2:
1                    1
2                    2
3                    3
4                    4
thx!

채택된 답변

Cedric
Cedric 2013년 10월 23일
If your .res file is a basic text file, you can proceed as follows
dlmwrite( 'myFile.res', [X,Y], 'delimiter', ' ' )

추가 답변 (2개)

David Sanchez
David Sanchez 2013년 10월 23일
x = 0:.1:1;
A = [x; exp(x)];
fileID = fopen('exp.res','w');
fprintf(fileID,'%6s %12s\n','x','exp(x)');
fprintf(fileID,'%6.2f %12.8f\n',A);
fclose(fileID);

lucas
lucas 2013년 10월 23일
thx guys

카테고리

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