SIMILAR COMMANDS FOR CREATING .TXT FILES

1 visualización (últimos 30 días)
Ivan Mich
Ivan Mich el 19 de Mayo de 2020
Respondida: Benjamin Großmann el 19 de Mayo de 2020
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?

Respuestas (1)

Benjamin Großmann
Benjamin Großmann el 19 de Mayo de 2020
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".

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by