Azzera filtri
Azzera filtri

Avoid +0 when using fprintf %+d

11 visualizzazioni (ultimi 30 giorni)
giannit
giannit il 1 Giu 2020
Commentato: giannit il 1 Giu 2020
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?

Risposta accettata

dpb
dpb il 1 Giu 2020
Modificato: dpb il 1 Giu 2020
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|
>>

Più risposte (0)

Categorie

Scopri di più su Author Block Masks in Help Center e File Exchange

Tag

Prodotti


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by