フィルターのクリア

Writing Character Strings from Text file to CSV, Error using fprintf Function is not defined for 'cell' inputs

2 ビュー (過去 30 日間)
Auriel
Auriel 2015 年 1 月 14 日
回答済み: Sara 2015 年 1 月 14 日
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);

回答 (1 件)

Sara
Sara 2015 年 1 月 14 日
Use C = C{1} after the textscan command. But, why not using csvwrite later?

カテゴリ

Help Center および File ExchangeText Files についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by