fprintf nested cells in matlab

1 次查看(过去 30 天)
ZK
ZK 2013-1-21
Hi.
I have the following:
A<3x1 cell>
where cells are arranged in column:
.<1x15 cell>
.<1x15 cell>
.<1x15 cell>
I would like to fprintf content of nested cells with spaces before numbers and with 15 numbers in each row.
Whats more can it be an universal funtion, that could work even when number of cells would be different like:
A<6x1 cell>
.<1x15 cell>
.<1x15 cell>
.<1x15 cell>
.<1x15 cell>
.<1x15 cell>
.<1x13 cell>
Cells content random numbers in format x.xxx Thank You
  1 个评论
Jan
Jan 2013-1-21
Please post valid Matlab syntax. Neither "A<3x1 cell>" not ".<1x15 cell>" is a standard notation. Using Matlab syntax would have the enormous advanatge, that it is clear, easy to read, the common language in this forum and that it can be used directly by copy&paste to test the suggestions.

请先登录,再进行评论。

回答(1 个)

Jan
Jan 2013-1-21
编辑:Jan 2013-1-21
function PrintNestedCell(fid, C)
for iC = 1:numel(C)
aC = C{iC};
if iscell(aC)
PrintNestedCell(fid, aC);
elseif ischar(aC)
fprintf('%s', aC);
elseif isnumeric(aC)
fprintf('%g ', aC);
else
error('Class not handled: [%s]', class(aC));
end
end
This is a general idea only. I leave adding spaces and other formatting ideas up to you.
  1 个评论
ZK
ZK 2013-1-22
Thank you for answer. I am working on something simpler, but I am a long way from a good efect, fighting with regexp function, in this line.
fprintf(fid, '%s\n', [ (cell2mat(cellfun(@cell2mat, A, 'UniformOutput', false)'))]);

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by