Save data to .txt file

조회 수: 2,179 (최근 30일)
Bernoulli Lizard
Bernoulli Lizard 2012년 9월 5일
댓글: Yeswanth Kaushik 2023년 6월 8일
How do I save data to a txt file? I want to create a simple two column text file, where the first column is the data from an nx1 matrix and the second column is a different n x 1 matrix. I also want column headings in the first row of each column.
thanks
  댓글 수: 2
Raghunandan V
Raghunandan V 2018년 10월 4일
편집: per isakson 2019년 1월 20일
the problem is you are trying to store them in an array whereas you have to store them in a cell array since each file is of different size Try this code
fileName={'new1.txt', 'new2.txt', 'new3.txt'};
%open file identifier
fid=fopen('MyFile.txt','w');
for k=1:length(fileName)
%read the file name as string including delimiters and next lines
List=textread(fileName{1,k},'%s','delimiter','\n');
%arrange them in order of k if you want in a cell array
FinalList{k,1}=List;
%or print them into a file.
fprintf(fid, [cell2mat(List) '\n']);
end
%close file indentifier
fclose(fid)
Yeswanth Kaushik
Yeswanth Kaushik 2023년 6월 8일
try writetable or writecell commands.

댓글을 달려면 로그인하십시오.

채택된 답변

José-Luis
José-Luis 2012년 9월 5일
편집: MathWorks Support Team 2020년 11월 4일
To write a text file with columns of data that have variable names, use the “writetable” function. First, create the data to write, put it in a table with variable names, and then write the data to text file.
% Create two columns of data
A = rand(10,1);
B = rand(10,1);
% Create a table with the data and variable names
T = table(A, B, 'VariableNames', { 'A', 'B'} )
% Write data to text file
writetable(T, 'MyFile.txt')
For more information see:
Starting in R2019a, you can use "writematrix" to write a matrix to a file.
For example:
M=magic(5);
writematrix(M, "M.txt");
For more information on "writematrix", please refer to the following documentation:
  댓글 수: 13
lafnath p
lafnath p 2016년 11월 14일
how to get the size of data in file
celine azizieh
celine azizieh 2017년 8월 14일
Better to use: fid=fopen('MyFile.txt','wt');
instead of fid=fopen('MyFile.txt','w');
otherwise when opening the file with notepad, there is not return to the line... everything is written on one line.

댓글을 달려면 로그인하십시오.

추가 답변 (3개)

WAEL Al-dulaimi
WAEL Al-dulaimi 2017년 12월 8일
In case I want to open a text file and I have a loop that each time give me different results {x1, x1...xn}. So how can I save all the data that I got from the loop in different names such as y1, y2 .... etc? And under each one of them, I can find the result that I got. I'll appreciate your help. thank you
  댓글 수: 1
Peter
Peter 2017년 12월 8일
It is unclear form your question what you are trying to loop across. It sounds like your trying to read from a single text file; is this true? In any case you should be able to just assign the value that you read to a new variable. If you know how long each data set is you can preallocate matrices for those variables, but that's not necessarily necessary.

댓글을 달려면 로그인하십시오.


Ahmed Saeed Mansour
Ahmed Saeed Mansour 2019년 1월 20일
How can we save transient CFD results in a file during running the code?
  댓글 수: 1
Venkatanarasimha Hegde
Venkatanarasimha Hegde 2023년 3월 17일
Its better if you store the time data at different instants along another matrix dimension (possible in C not sure about matlab) or you can concatinate the new data to existing file, so while visualising you can access after the end index of each time instant.

댓글을 달려면 로그인하십시오.


Paige Kierce
Paige Kierce 2020년 5월 31일
randA

카테고리

Help CenterFile Exchange에서 Data Import and Export에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by