I am trying to print some numbers in octal format, which I should be
able to do by using msprintf. At least that´s what the help entry for
printf_conversion says.
But unfortunately, when I try this, I get told, that the '%o' format
string is not allowed for that method:
msprintf('%o',8)
!--error 998
msprintf: ein Fehler ist aufgetreten: 'o' Format nicht erlaubt.
Is there another option to solve this problem?
Thanks in advance,
Piet
SG - 24 Feb 2010 14:06 GMT
> I am trying to print some numbers in octal format, which I should be
> able to do by using msprintf. At least that´s what the help entry for
[quoted text clipped - 6 lines]
> !--error 998
> msprintf: ein Fehler ist aufgetreten: 'o' Format nicht erlaubt.
You may post a bug report at http://bugzilla.scilab.org/
This bug has not already been reported
> Is there another option to solve this problem?
dec2oct(8) will return the appropriated string
Samuel