creating a .res with 2 variables side by side (2 columns)
2 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
Cedric
2013 年 10 月 23 日
If your .res file is a basic text file, you can proceed as follows
dlmwrite( 'myFile.res', [X,Y], 'delimiter', ' ' )
0 件のコメント
その他の回答 (2 件)
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);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Web Services についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!