Error using fprintf : Function is not defined for 'cell' inputs

41 次查看(过去 30 天)
Hi all,
I have a problem with my code : when I try to run this code :
fprintf(outputfile, '%s\t %s\t %d\t %s\t %s\t', subID, imageFolder, t, textString, file);
I have an error message :
Error using fprintf
Function is not defined for 'cell' inputs.
Error in runImageSequence_NFB (line 163)
fprintf(outputfile, '%s\t %s\t %d\t %s\t %s\t', subID, imageFolder, t, textString, file);
Can you please help me ?

采纳的回答

drummer
drummer 2020-10-21
what if you do
fprintf(outputfile, 'blah %s', string(subID)) % sure, if that's your cell variable you want to display.
Cheers.

更多回答(0 个)

类别

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

标签

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by