How to put cell array in sprintf?
조회 수: 81 (최근 30일)
이전 댓글 표시
Data is in cell array: {1,2,3,4,5} sprintf('%d,%d,%d,%d,%d ',???);
댓글 수: 0
채택된 답변
Jos (10584)
2015년 5월 29일
Use comma-separated list expansion. And you need to specify the format only once (see help fprintf)
A = {1 2 3 4}
sprintf('%d ',A{:})
댓글 수: 0
추가 답변 (3개)
Jan Siegmund
2020년 8월 25일
편집: Jan Siegmund
2020년 8월 31일
If using multiple different cells:
%% Edited
% var = {'a','b','c','d','e'};
% num = {1,2,3,4,5};
% s = strjoin(cellfun(@(v,n)sprintf('%s = %d',v,n),var,num,'UniformOutput',false),'; ');
Stephen's comment for a proper solution
댓글 수: 2
Stephen23
2020년 8월 25일
Simpler and more efficient:
>> tmp = [var;num];
>> fprintf('%s = %d\n',tmp{:})
a = 1
b = 2
c = 3
d = 4
e = 5
Jan Siegmund
2020년 8월 31일
편집: Jan Siegmund
2020년 8월 31일
Oh, when sprintf and fprintf reported:
>> s = sprintf('%s = %d\n',var,num)
Error using sprintf
Function is not defined for 'cell' inputs.
I thougth sprintf and fprintf were not defined for cell arrays.
Edited: (And I did not think about the cell unpacking {:}
Anyways, yours is definitely the better solution!
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!