creating a .res with 2 variables side by side (2 columns)
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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!
0 commentaires
Réponse acceptée
Cedric
le 23 Oct 2013
If your .res file is a basic text file, you can proceed as follows
dlmwrite( 'myFile.res', [X,Y], 'delimiter', ' ' )
0 commentaires
Plus de réponses (2)
David Sanchez
le 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);
0 commentaires
Voir également
Catégories
En savoir plus sur Web Services dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!