Rounding of a number/ text file format

Hi, i used this command to save a work space variable into text file.
save('corner.txt', 'new_bpCols', '-ASCII', '-double','-append');
and the output is like I attached, I wanted to have the exact values as in the variables which is:
What format I should use?
The workspace variable value: 19 20 38 46 64 66 101 105 122 129 148 149
Thank you

 Akzeptierte Antwort

Mischa Kim
Mischa Kim am 23 Jul. 2014
Bearbeitet: Mischa Kim am 23 Jul. 2014

0 Stimmen

missC, you could use instead
x = 1:5;
fid = fopen('corner.txt','w');
fprintf(fid,' %d\n',x); % > %d: write integer values to text file
fclose(fid)

2 Kommentare

missC
missC am 24 Jul. 2014
great thanks! :)
another question. How to concatenate two variables into one text file in column wise. For example: X in one column and Y in another column. Appreciate your help x = a; y = b; fid = fopen('corners.txt','w');
%table header
fprintf(fid, 'X Y \r\n');
fprintf(fid,x,'%d %d\r\n',y);

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Gefragt:

am 23 Jul. 2014

Kommentiert:

am 24 Jul. 2014

Community Treasure Hunt

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

Start Hunting!

Translated by