Using cellwrite to write matrix to .txt

1 次查看(过去 30 天)
I have a 66x23 matrix that has strings in the first row, strings in the first three columns, and then the rest is doubles. The matrix is a cell matrix and thus I decided to give cellwrite a try. The output in the text file does not take into account when the next row begins. Any advice on how I can fix this in the cellwrite.m file or in my code?
It should be noted that the size of the matrix can/probably will change as this is to analyze data that comes in a certain format.
Thanks in advance.
  3 个评论
Michael Neal
Michael Neal 2012-5-13
Yeah sorry, I should have specified it was in the file exchange.
Jan
Jan 2012-5-13
I do not want to bother you, but does this mean, that I guessed the correct function?

请先登录,再进行评论。

回答(1 个)

Jan
Jan 2012-5-13
I do not want to fix the code of cellwrite. What about a simple Cell2File tool like:
function WriteCell(FID, C)
Sep = ' ';
[m, n] = size(C);
for i = 1:m
for j = 1:n
aC = C{i, j};
if ischar(aC)
fwrite(FID, aC, 'char');
elseif isnumeric(aC)
fprintf(FID, '%g', aC);
else
fwrite(FID, '???', 'char');
warning(['JSim:', mfilename, ':BadDataType'], ...
['Class not handled yet: ', class(aC)]);
end
if j < n
fwrite(FID, Sep, 'char');
else
fwrite(FID, char(10), 'char');
end
end
end

类别

Help CenterFile Exchange 中查找有关 Data Import and Export 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by