Displaying 2 results from an estimated 2 matches for "round3".
Did you mean:
round
2006 May 21
0
Mongrel as win32-service, round3.
Hello lists!
This is not spam, but included the 2 lists (mongrel-users and
win32utils-devel) because the both are involved.
Attached is the 3rd version of a simple http_service script used
previously to get the things right for the mongrel Rails service.
With the modifications Zed implemented the past days (into the beta
gem, 0.3.13). Now the service part works better.
Still, a few things must
2007 May 14
1
round(#, digits=x) unreliable for x=2 (PR#9682)
...unless the
reader knows this behaviour. Is this a bug or intended behaviour? Is there a
work-around?
#Example code:
number <- 0.897575 # this one isn't reported to 2 decimal places 0.90 as
expected
#number <- 0.946251 # when the last reported digit is non-zero it gives expected
behaviour
Round3 <- round(number, digits=3)
Round2 <- round(number, digits=2) #why 0.9 and not 0.90 for 0.897575?
Round1 <- round(number, digits=1)
Signif3 <- signif(number, digits=3)
Signif2 <- signif(number, digits=2) #why 0.9 and not 0.90 0.897575?
Signif1 <- signif(number, digits=1)...