creating a .res with 2 variables side by side (2 columns)
Show older comments
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!
Accepted Answer
More Answers (2)
David Sanchez
on 23 Oct 2013
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);
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!