Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Best Material for Floors:

by TedYoung (Deacon)
on Dec 01, 2007 at 05:27 UTC ( [id://654278]=note: print w/replies, xml ) Need Help??


in reply to Best Material for Floors:

Come on everyone, why use something so complicated. If you need floor just use POSIX! It comes standard with all perls (I think).

Ted Young

($$<<$$=>$$<=>$$<=$$>>$$) always returns 1. :-)

Replies are listed 'Best First'.
Re^2: Best Material for Floors: (POSIX--)
by tye (Sage) on Dec 01, 2007 at 05:32 UTC

    Bleh. POSIX::floor() on a Perl that uses "long double" (or similar) as NVs induces a great reduction in precision. Much better to just use:

    sub floor { $_[0] < 0 ? -int(-$_[0]) : int($_[0]); }
    sub floor { my $i= int( my $f= shift @_ ); return $i - ( $f<0 && $f!=$ +i ); }

    Now you know. :)

    - tye        

      floor -2.5 Should return -3.

        Heh, thanks. Fixed. Since I discovered the problem working with really large numbers, even my previous version was tons more accurate than POSIX::floor in that particular situation so it fixed the problem. That's how bad POSIX::floor can be.

        - tye        

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://654278]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (6)
As of 2024-04-19 16:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found