SIMILAR COMMANDS FOR CREATING .TXT FILES

1 次查看(过去 30 天)
What modifications should I do in order to create a final .txt file.
I know these commands in order to create a .csv file but I do not know how to do this for .txt files
My commands:
files = dir('new*.csv') ;
N = length(files) ;
iwant = cell(N,1) ;
for i = 1:N
num = xlsread(files(i).name) ;
iwant{i} = num ;
end
iwant = cell2mat(iwant) ;
csvwrite('A.csv',iwant)
Could Anyone help me?

回答(1 个)

Benjamin Großmann
Benjamin Großmann 2020-5-19
You can use dlmwrite to write an array into a text file and specify the delimiter or use fprintf to have more control about the formatting of the output.
A csv file is a ascii ("txt") file with comma as delimiter (comma separated values) and usually the file extension "csv".

类别

Help CenterFile Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by