Writing Character Strings from Text file to CSV, Error using fprintf Function is not defined for 'cell' inputs
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I'd like to have some code that will read in a column of strings from a text file, and print them in the first column of a CSV file. The following seems to read the file okay, but I'm getting an error about the fprintf function. I think I've indexed the cell array appropriately for this function, but maybe not. Can anyone tell what the issue might be? All of the character strings are of the same length and the format: S205_C1_S2_A1_D1_T051_VT.csv.
fid = fopen(file_name); C = textscan(fid, '%s'); fclose(fid);
fid1 = fopen('TrialNum_Output.csv','a');
for i = 1:length(C) fprintf(fid1,'%s\n',C{:}); %C{i} = {s(19:21)}; end
fclose(fid1);
0 Commenti
Risposte (1)
Sara
il 14 Gen 2015
Use C = C{1} after the textscan command. But, why not using csvwrite later?
0 Commenti
Vedere anche
Categorie
Scopri di più su Text 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!