How to write 2x1 string to csv?
조회 수: 7 (최근 30일)
이전 댓글 표시
I have created a 2x1 string array which contains filenames in the first column, and a 'yes' or 'no' in the second column.
I'd like to write this information to an output format, preferrable .csv, how could I do this? Should I be converting from string to another format first?
Thanks!! My work so far:
%Create output array, table with two columns
sz1=files; %number of rows=number files in folder
szN=2; %number of columns=2
results=strings(sz1,szN);
d(i).name=convertCharsToStrings(d(i).name); %convert filename to suitable format
%Does it look like there is boat noise in the plot?
answer=input('Can you see boat noise? y/n: \n', 's')
if strcmp(answer,'y');
%store filename in output with 'boat' in second column
results(row,1) = d(i).name;
results(row,2) = 'yesboat';
elseif strcmp(answer,'n');
%store filename in output with 'no boat' in second column
results(row,1) = d(i).name;
results(row,2) = 'noboat';
else
disp('Input must be Y or N!');
end
댓글 수: 0
채택된 답변
Walter Roberson
2019년 9월 4일
편집: Walter Roberson
2019년 9월 4일
You can convert to a table() object and writetable() with WriteVariableNames set to false.
Or you can do it "manually", by using fopen(), fprintf(), fclose()
Or you can
char(results(:,1) + ',' + results(:,2))
and dlmwrite() that to a .csv file, making sure you use 'delimiter', '' (that is the empty character vector)
If you were using R2019a or later (and thank you for filling in your release!), then you could use writematrix()
댓글 수: 2
Walter Roberson
2019년 9월 6일
writematrix() needs the release after you have.
writetable() is fine for tables of data that is not all the same datatype.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Text Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!