Avoid +0 when using fprintf %+d

12 次查看(过去 30 天)
Consider the code
names={'aba','cda','efa','fea','pod'};
numbers=randi([-1 1],5,4);
for i=1:5
fprintf('|%s|%+d|%+d|%+d|%+d|\n',names{i},numbers(i,:))
end
whose output is similar to
|aba|+0|+1|+1|+1|
|cda|-1|+1|-1|+1|
|efa|+1|+0|-1|-1|
|fea|+1|+0|-1|+1|
|pod|+1|-1|-1|-1|
Is there a way to remove the plus in front of the 0s, or to not print + when the number is 0?

采纳的回答

dpb
dpb 2020-6-1
编辑:dpb 2020-6-1
Not w/o some code logic of one form or the other, no. There is no "magic bullet" format descriptor that behaves as desired; as you notice, the '+' adds the sign to any numeric field. There also is no conditional formatting expression built in like an Excel format expression.
You could, however, build the format string dynamically and insert the plus only where the values aren't zero. Or, (in a somewhat less elegant solution imo) you could write the output string to a variable first and then do character substitution on it before displaying or writing to file or whatever it is that is the end objective.
The latter is, of course, a trivial change to implement even if somewhat klunky--
for i=1:5
str=sprintf('|%s|%+d|%+d|%+d|%+d|\n',names{i},numbers(i,:));
fprintf('%s\n',strrep(str,'+0',' 0'))
end
Let's see on the former...scratch, stratch...emmm....ah! OK, here, try this:
>> fmts={'% d|','%+d|'};
>> disp(cell2mat([compose('|%s|',string(names.')) compose(fmts((numbers~=0)+1),numbers)]))
|aba|+1|+1|-1|+1|
|cda|-1|+1| 0| 0|
|efa|+1|-1| 0|+1|
|fea|-1| 0|-1| 0|
|pod|+1| 0| 0|-1|
>>

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Author Block Masks 的更多信息

标签

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by