Skip to content
Prev 334413 / 398506 Next

Converting decimal to binary in R

I recommend
?sprintf

(4^(1/3))^3 != 4
(4^(1/3))^3 == 4
(4^(1/3))^3 - 4
format(c((4^(1/3))^3 , 4), digits=17)
sprintf("%+13.13a", c((4^(1/3))^3 , 4))
On Fri, Dec 13, 2013 at 10:11 PM, ???? <1248283536 at qq.com> wrote: