Effacer les filtres
Effacer les filtres

fprintf nested cells in matlab

2 vues (au cours des 30 derniers jours)
ZK
ZK le 21 Jan 2013
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 commentaire
Jan
Jan le 21 Jan 2013
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.

Connectez-vous pour commenter.

Réponses (1)

Jan
Jan le 21 Jan 2013
Modifié(e) : Jan le 21 Jan 2013
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 commentaire
ZK
ZK le 22 Jan 2013
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)'))]);

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by