Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^3: maximum value of a scalar

by syphilis (Archbishop)
on Oct 21, 2008 at 13:08 UTC ( [id://718478]=note: print w/replies, xml ) Need Help??


in reply to Re^2: maximum value of a scalar
in thread maximum value of a scalar

you can always use Modules like Math::BigInt

Excellent observation - and such large numbers are, after all, stored in scalars - as per the OP's requirement.

The one limitation of Math::BigInt is that it's pure perl and can therefore be a little slow when it comes to manipulating those numeric values. As an alternative one could look at modules like Math::GMP, Math::Pari and Math::MPFR. These modules, like Math::BigInt, all store their values in sclarars and they still suffer from the "available memory" limitation - and, unlike Math::BigInt, they all depend upon external C libraries. The one big difference in their favour is that they provide much faster arithmetic manipulation of the bignum values than Math::BigInt.

Cheers,
Rob

Replies are listed 'Best First'.
Re^4: maximum value of a scalar
by Taulmarill (Deacon) on Oct 22, 2008 at 08:53 UTC

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-18 18:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found