SIMILAR COMMANDS FOR CREATING .TXT FILES

1 visualizzazione (ultimi 30 giorni)
Ivan Mich
Ivan Mich il 19 Mag 2020
Risposto: Benjamin Großmann il 19 Mag 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?

Risposte (1)

Benjamin Großmann
Benjamin Großmann il 19 Mag 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".

Categorie

Scopri di più su Workspace Variables and MAT-Files in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by