📄 bigrat.3
字号:
.\" Automatically generated by Pod::Man 2.16 (Pod::Simple 3.05).\".\" Standard preamble:.\" ========================================================================.de Sh \" Subsection heading.br.if t .Sp.ne 5.PP\fB\\$1\fR.PP...de Sp \" Vertical space (when we can't use .PP).if t .sp .5v.if n .sp...de Vb \" Begin verbatim text.ft CW.nf.ne \\$1...de Ve \" End verbatim text.ft R.fi...\" Set up some character translations and predefined strings. \*(-- will.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left.\" double quote, and \*(R" will give a right double quote. \*(C+ will.\" give a nicer C++. Capital omega is used to do unbreakable dashes and.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,.\" nothing in troff, for use with C<>..tr \(*W-.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'.ie n \{\. ds -- \(*W-. ds PI pi. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch. ds L" "". ds R" "". ds C` "". ds C' ""'br\}.el\{\. ds -- \|\(em\|. ds PI \(*p. ds L" ``. ds R" '''br\}.\".\" Escape single quotes in literal strings from groff's Unicode transform..ie \n(.g .ds Aq \(aq.el .ds Aq '.\".\" If the F register is turned on, we'll generate index entries on stderr for.\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index.\" entries marked with X<> in POD. Of course, you'll have to process the.\" output yourself in some meaningful fashion..ie \nF \{\. de IX. tm Index:\\$1\t\\n%\t"\\$2"... nr % 0. rr F.\}.el \{\. de IX...\}.\".\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2)..\" Fear. Run. Save yourself. No user-serviceable parts.. \" fudge factors for nroff and troff.if n \{\. ds #H 0. ds #V .8m. ds #F .3m. ds #[ \f1. ds #] \fP.\}.if t \{\. ds #H ((1u-(\\\\n(.fu%2u))*.13m). ds #V .6m. ds #F 0. ds #[ \&. ds #] \&.\}. \" simple accents for nroff and troff.if n \{\. ds ' \&. ds ` \&. ds ^ \&. ds , \&. ds ~ ~. ds /.\}.if t \{\. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u". ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'.\}. \" troff and (daisy-wheel) nroff accents.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'.ds 8 \h'\*(#H'\(*b\h'-\*(#H'.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#].ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#].ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#].ds ae a\h'-(\w'a'u*4/10)'e.ds Ae A\h'-(\w'A'u*4/10)'E. \" corrections for vroff.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'. \" for low resolution devices (crt and lpr).if \n(.H>23 .if \n(.V>19 \\{\. ds : e. ds 8 ss. ds o a. ds d- d\h'-1'\(ga. ds D- D\h'-1'\(hy. ds th \o'bp'. ds Th \o'LP'. ds ae ae. ds Ae AE.\}.rm #[ #] #H #V #F C.\" ========================================================================.\".IX Title "bigrat 3".TH bigrat 3 "2007-12-18" "perl v5.10.0" "Perl Programmers Reference Guide".\" For nroff, turn off justification. Always turn off hyphenation; it makes.\" way too many mistakes in technical documents..if n .ad l.nh.SH "NAME"bigrat \- Transparent BigNumber/BigRational support for Perl.SH "SYNOPSIS".IX Header "SYNOPSIS".Vb 1\& use bigrat;\&\& print 2 + 4.5,"\en"; # BigFloat 6.5\& print 1/3 + 1/4,"\en"; # produces 7/12\&\& {\& no bigrat;\& print 1/3,"\en"; # 0.33333...\& }\&\& # Note that this will make hex() and oct() be globally overriden:\& use bigrat qw/hex oct/;\& print hex("0x1234567890123490"),"\en";\& print oct("01234567890123490"),"\en";.Ve.SH "DESCRIPTION".IX Header "DESCRIPTION"All operators (including basic math operations) are overloaded. Integer andfloating-point constants are created as proper BigInts or BigFloats,respectively..PPOther than bignum, this module upgrades to Math::BigRat, meaning thatinstead of 2.5 you will get 2+1/2 as output..Sh "Modules Used".IX Subsection "Modules Used"\&\f(CW\*(C`bigrat\*(C'\fR is just a thin wrapper around various modules of the Math::BigIntfamily. Think of it as the head of the family, who runs the shop, and ordersthe others to do the work..PPThe following modules are currently used by bignum:.PP.Vb 4\& Math::BigInt::Lite (for speed, and only if it is loadable)\& Math::BigInt\& Math::BigFloat\& Math::BigRat.Ve.Sh "Math Library".IX Subsection "Math Library"Math with the numbers is done (by default) by a module calledMath::BigInt::Calc. This is equivalent to saying:.PP.Vb 1\& use bigrat lib => \*(AqCalc\*(Aq;.Ve.PPYou can change this by using:.PP.Vb 1\& use bignum lib => \*(AqGMP\*(Aq;.Ve.PPThe following would first try to find Math::BigInt::Foo, thenMath::BigInt::Bar, and when this also fails, revert to Math::BigInt::Calc:.PP.Vb 1\& use bigrat lib => \*(AqFoo,Math::BigInt::Bar\*(Aq;.Ve.PPUsing \f(CW\*(C`lib\*(C'\fR warns if none of the specified libraries can be found andMath::BigInt did fall back to one of the default libraries.To supress this warning, use \f(CW\*(C`try\*(C'\fR instead:.PP.Vb 1\& use bignum try => \*(AqGMP\*(Aq;.Ve.PPIf you want the code to die instead of falling back, use \f(CW\*(C`only\*(C'\fR instead:.PP.Vb 1\& use bignum only => \*(AqGMP\*(Aq;.Ve.PPPlease see respective module documentation for further details..Sh "Sign".IX Subsection "Sign"The sign is either '+', '\-', 'NaN', '+inf' or '\-inf'..PPA sign of 'NaN' is used to represent the result when input arguments are notnumbers or as a result of 0/0. '+inf' and '\-inf' represent plus respectivelyminus infinity. You will get '+inf' when dividing a positive number by 0, and\&'\-inf' when dividing any negative number by 0..Sh "Methods".IX Subsection "Methods"Since all numbers are not objects, you can use all functions that are part ofthe BigInt or BigFloat \s-1API\s0. It is wise to use only the \fIbxxx()\fR notation, and notthe \fIfxxx()\fR notation, though. This makes you independed on the fact that theunderlying object might morph into a different class than BigFloat..IP "\fIinf()\fR" 2.IX Item "inf()"A shortcut to return Math::BigInt\->\fIbinf()\fR. Useful because Perl does not alwayshandle bareword \f(CW\*(C`inf\*(C'\fR properly..IP "\fINaN()\fR" 2.IX Item "NaN()"A shortcut to return Math::BigInt\->\fIbnan()\fR. Useful because Perl does not alwayshandle bareword \f(CW\*(C`NaN\*(C'\fR properly..IP "e" 2.IX Item "e".Vb 1\& # perl \-Mbigrat=e \-wle \*(Aqprint e\*(Aq.Ve.SpReturns Euler's number \f(CW\*(C`e\*(C'\fR, aka \fIexp\fR\|(1)..IP "\s-1PI\s0" 2.IX Item "PI".Vb 1\& # perl \-Mbigrat=PI \-wle \*(Aqprint PI\*(Aq.Ve.SpReturns \s-1PI\s0..IP "\fIbexp()\fR" 2.IX Item "bexp()".Vb 1\& bexp($power,$accuracy);.Ve.SpReturns Euler's number \f(CW\*(C`e\*(C'\fR raised to the appropriate power, tothe wanted accuracy..SpExample:.Sp.Vb 1\& # perl \-Mbigrat=bexp \-wle \*(Aqprint bexp(1,80)\*(Aq.Ve.IP "\fIbpi()\fR" 2.IX Item "bpi()".Vb 1\& bpi($accuracy);.Ve.SpReturns \s-1PI\s0 to the wanted accuracy..SpExample:.Sp.Vb 1\& # perl \-Mbigrat=bpi \-wle \*(Aqprint bpi(80)\*(Aq.Ve.IP "\fIupgrade()\fR" 2.IX Item "upgrade()"Return the class that numbers are upgraded to, is in fact returning\&\f(CW$Math::BigInt::upgrade\fR..IP "\fIin_effect()\fR" 2.IX Item "in_effect()".Vb 1\& use bigrat;\&\& print "in effect\en" if bigrat::in_effect; # true\& {\& no bigrat;\& print "in effect\en" if bigrat::in_effect; # false\& }.Ve.SpReturns true or false if \f(CW\*(C`bigrat\*(C'\fR is in effect in the current scope..SpThis method only works on Perl v5.9.4 or later..Sh "\s-1MATH\s0 \s-1LIBRARY\s0".IX Subsection "MATH LIBRARY"Math with the numbers is done (by default) by a module called.Sh "Cavaet".IX Subsection "Cavaet"But a warning is in order. When using the following to make a copy of a number,only a shallow copy will be made..PP.Vb 2\& $x = 9; $y = $x;\& $x = $y = 7;.Ve.PPIf you want to make a real copy, use the following:.PP.Vb 1\& $y = $x\->copy();.Ve.PPUsing the copy or the original with overloaded math is okay, e.g. thefollowing work:.PP.Vb 2\& $x = 9; $y = $x;\& print $x + 1, " ", $y,"\en"; # prints 10 9.Ve.PPbut calling any method that modifies the number directly will result in\&\fBboth\fR the original and the copy being destroyed:.PP.Vb 2\& $x = 9; $y = $x;\& print $x\->badd(1), " ", $y,"\en"; # prints 10 10\&\& $x = 9; $y = $x;\& print $x\->binc(1), " ", $y,"\en"; # prints 10 10\&\& $x = 9; $y = $x;\& print $x\->bmul(2), " ", $y,"\en"; # prints 18 18.Ve.PPUsing methods that do not modify, but testthe contents works:.PP.Vb 2\& $x = 9; $y = $x;\& $z = 9 if $x\->is_zero(); # works fine.Ve.PPSee the documentation about the copy constructor and \f(CW\*(C`=\*(C'\fR in overload, aswell as the documentation in BigInt for further details..Sh "Options".IX Subsection "Options"bignum recognizes some options that can be passed while loading it via use.The options can (currently) be either a single letter form, or the long form.The following options exist:.IP "a or accuracy" 2.IX Item "a or accuracy"This sets the accuracy for all math operations. The argument must be greaterthan or equal to zero. See Math::BigInt's \fIbround()\fR function for details..Sp.Vb 1\& perl \-Mbigrat=a,50 \-le \*(Aqprint sqrt(20)\*(Aq.Ve.SpNote that setting precision and accurary at the same time is not possible..IP "p or precision" 2.IX Item "p or precision"This sets the precision for all math operations. The argument can be anyinteger. Negative values mean a fixed number of digits after the dot, whilea positive value rounds to this digit left from the dot. 0 or 1 mean round tointeger. See Math::BigInt's \fIbfround()\fR function for details..Sp.Vb 1\& perl \-Mbigrat=p,\-50 \-le \*(Aqprint sqrt(20)\*(Aq.Ve.SpNote that setting precision and accurary at the same time is not possible..IP "t or trace" 2.IX Item "t or trace"This enables a trace mode and is primarily for debugging bignum orMath::BigInt/Math::BigFloat..IP "l or lib" 2.IX Item "l or lib"Load a different math lib, see \*(L"\s-1MATH\s0 \s-1LIBRARY\s0\*(R"..Sp.Vb 1\& perl \-Mbigrat=l,GMP \-e \*(Aqprint 2 ** 512\*(Aq.Ve.SpCurrently there is no way to specify more than one library on the commandline. This means the following does not work:.Sp.Vb 1\& perl \-Mbignum=l,GMP,Pari \-e \*(Aqprint 2 ** 512\*(Aq.Ve.SpThis will be hopefully fixed soon ;).IP "hex" 2.IX Item "hex"Override the built-in \fIhex()\fR method with a version that can handle bigintegers. Note that under Perl v5.9.4 or ealier, this will be globaland cannot be disabled with \*(L"no bigint;\*(R"..IP "oct" 2.IX Item "oct"Override the built-in \fIoct()\fR method with a version that can handle bigintegers. Note that under Perl v5.9.4 or ealier, this will be globaland cannot be disabled with \*(L"no bigint;\*(R"..IP "v or version" 2.IX Item "v or version"This prints out the name and version of all modules used and then exits..Sp.Vb 1\& perl \-Mbigrat=v.Ve.SH "CAVAETS".IX Header "CAVAETS".IP "\fIin_effect()\fR" 2.IX Item "in_effect()"This method only works on Perl v5.9.4 or later..IP "\fIhex()\fR/\fIoct()\fR" 2.IX Item "hex()/oct()"\&\f(CW\*(C`bigint\*(C'\fR overrides these routines with versions that can also handlebig integer values. Under Perl prior to version v5.9.4, however, thiswill not happen unless you specifically ask for it with the twoimport tags \*(L"hex\*(R" and \*(L"oct\*(R" \- and then it will be global and cannot bedisabled inside a scope with \*(L"no bigint\*(R":.Sp.Vb 1\& use bigint qw/hex oct/;\&\& print hex("0x1234567890123456");\& {\& no bigint;\& print hex("0x1234567890123456");\& }.Ve.SpThe second call to \fIhex()\fR will warn about a non-portable constant..SpCompare this to:.Sp.Vb 1\& use bigint;\&\& # will warn only under Perl older than v5.9.4\& print hex("0x1234567890123456");.Ve.SH "EXAMPLES".IX Header "EXAMPLES".Vb 6\& perl \-Mbigrat \-le \*(Aqprint sqrt(33)\*(Aq\& perl \-Mbigrat \-le \*(Aqprint 2*255\*(Aq\& perl \-Mbigrat \-le \*(Aqprint 4.5+2*255\*(Aq\& perl \-Mbigrat \-le \*(Aqprint 3/7 + 5/7 + 8/3\*(Aq \& perl \-Mbigrat \-le \*(Aqprint 12\->is_odd()\*(Aq;\& perl \-Mbignum=l,GMP \-le \*(Aqprint 7 ** 7777\*(Aq.Ve.SH "LICENSE".IX Header "LICENSE"This program is free software; you may redistribute it and/or modify it underthe same terms as Perl itself..SH "SEE ALSO".IX Header "SEE ALSO"Especially bignum..PPMath::BigFloat, Math::BigInt, Math::BigRat and Math::Big as wellas Math::BigInt::BitVect, Math::BigInt::Pari and Math::BigInt::GMP..SH "AUTHORS".IX Header "AUTHORS"(C) by Tels <http://bloodgate.com/> in early 2002 \- 2007.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -