Writing Character Strings from Text file to CSV, Error using fprintf Function is not defined for 'cell' inputs
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Sara
el 14 de En. de 2015
Use C = C{1} after the textscan command. But, why not using csvwrite later?
0 comentarios
Ver también
Categorías
Más información sobre Text 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!