writing a matrix into a file

7 Ansichten (letzte 30 Tage)
Tina
Tina am 29 Mär. 2013
Kommentiert: Aman Kumar am 3 Nov. 2020
Hello;
I have a matrix A, let's say it is a 100x1 matrix. I want to put the data into a text file, such that each line corresponds to the row of my matrix. How can I do it?

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 29 Mär. 2013
Bearbeitet: Azzi Abdelmalek am 29 Mär. 2013
dlmwrite('file.txt',A)
  4 Kommentare
Azzi Abdelmalek
Azzi Abdelmalek am 29 Mär. 2013
Bearbeitet: Azzi Abdelmalek am 29 Mär. 2013
Use
dlmwrite('file.txt',A,'newline','pc')
Aman Kumar
Aman Kumar am 3 Nov. 2020
Just take transpose of your matrix and then write it to a file

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (3)

the cyclist
the cyclist am 29 Mär. 2013
Bearbeitet: the cyclist am 29 Mär. 2013
There are many possible ways. One is to use the frprintf() function. See
doc fprintf
for syntax and examples.
  1 Kommentar
Tina
Tina am 29 Mär. 2013
I know, but I could not figure out how I can have the file such that each line has only one number in it.

Melden Sie sich an, um zu kommentieren.


Susan
Susan am 29 Mär. 2013
Here's a basic script that you should be able to modify and get to work using fprintf. Look at the help document for other things you can specify, like field width.
homedir = cd; % Save current directory as home directory
nrows = size(A,1);
flnm = 'Matrix A'; % Specify string for filename
cd(newdir); % Change directory to new directory, if desired. Must specify string for new directory.
fid = fopen(flnm,'wt+'); % Create writable textfile
% Enter data into text file
for i = 1:nrows
fprintf(fid,'%f\r\n',A(i,:)); % The %f is for floating point numbers, or you could use %d for double-precision integers
end
% Close text file and return to home directory
fclose(fid);
cd(homedir); % Return to home directory
  1 Kommentar
James Tursa
James Tursa am 19 Okt. 2017
@Eric: Please delete this comment and instead open up a new question with your code.

Melden Sie sich an, um zu kommentieren.


Eric Berger
Eric Berger am 19 Okt. 2017
I'm going to try to debug on my own, I can delete this if you want

Kategorien

Mehr zu File Operations finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by