Really! fprintf cell error

3 ビュー (過去 30 日間)
Changyu Liu
Changyu Liu 2020 年 4 月 2 日
コメント済み: Changyu Liu 2020 年 4 月 3 日
function []=printresults2file(shape)
fid=fopen('ChangyuLiu.txt','wt');
fprintf(fid, 'The number of entered objects was %d \n', size(shape,1));
fprintf(fid,'%s \t\t %s \t\t %s \t\t %s\n','No.','ID','Color','Area');
for i=1:size(shape,1)
fprintf(fid, '%d %s %s %f',shape{i,:});
fprintf('\n');
end
fclose(fid);
end
This is a sub-function I used to output a table in .txt file. However, the error kept pumping up as
Error using fprintf
Function is not defined for 'cell' inputs.
I wonder what's causing the problem.
  6 件のコメント
Changyu Liu
Changyu Liu 2020 年 4 月 2 日
>> disp(shape(1,:))
[1] {1×1 cell} {1×1 cell} [3.1416]
James Tursa
James Tursa 2020 年 4 月 3 日
So that is your answer, two of the cell elements are themselves cells, and you can't feed those directly to fprintf.

サインインしてコメントする。

採用された回答

James Tursa
James Tursa 2020 年 4 月 3 日
What happens if you change this
fprintf(fid, '%d %s %s %f',shape{i,:});
to this
fprintf(fid, '%d %s %s %f',shape{i,1},shape{i,2}{1},shape{i,3}{1},shape{i,4});
  1 件のコメント
Changyu Liu
Changyu Liu 2020 年 4 月 3 日
Much appreciated!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by