Search results for "module:Math::BigRat"
Math::BigRat - arbitrary size rational number math package
Math::BigRat complements Math::BigInt and Math::BigFloat by providing support for arbitrary big rational numbers. MATH LIBRARY You can change the underlying module that does the low-level math operations by using: use Math::BigRat try => 'GMP'; Note:...
PJACKLAM/Math-BigRat-0.2624 - 27 Jun 2022 19:00:47 UTC
Math::Int64 - Manipulate 64 bits integers in Perl
This module adds support for 64 bit integers, signed and unsigned, to Perl. Exportable functions int64() int64($value) Creates a new int64 value and initializes it to $value, where $value can be a Perl number or a string containing a number. For inst...
SALVA/Math-Int64-0.54 - 04 Jan 2016 09:08:26 UTC
Math::ModInt - modular integer arithmetic
Math::ModInt provides overloaded operators for modular integer arithmetic. Math::ModInt objects represent integer residue classes. These objects can be used in arithmetic expressions just like Perl numbers. Math::ModInt objects are immutable. Mutator...
MHASCH/Math-ModInt-0.013 - 28 Mar 2021 07:03:09 UTC
Math::BigInt - arbitrary size integer math package
Math::BigInt provides support for arbitrary precision integers. Overloading is also provided for Perl operators. Input Input values to these routines may be any scalar number or string that looks like a number and represents an integer. Anything that...
PJACKLAM/Math-BigInt-1.999838 - 31 Mar 2023 14:34:44 UTC
Math::Decimal - arithmetic in decimal
This module performs basic arithmetic with arbitrary-precision numbers expressed in decimal in ordinary Perl strings. The numbers can be arbitrarily large, and can involve arbitrarily small fractions, and all results are exact. This differs from Perl...
ZEFRAM/Math-Decimal-0.004 - 29 Jul 2017 19:51:04 UTC
Math::BigFloat - arbitrary size floating point math package
Math::BigFloat provides support for arbitrary precision floating point. Overloading is also provided for Perl operators. All operators (including basic math operations) are overloaded if you declare your big floating point numbers as $x = Math::BigFl...
PJACKLAM/Math-BigInt-1.999838 - 31 Mar 2023 14:34:44 UTC
Math::Assistant - functions for various exact algebraic calculations
The module contains important algebraic operations: matrix rank, determinant and solve an equation system. The integer values are accepted. Calculations with the raised accuracy....
DONANGEL/Math-Assistant-0.05 - 05 Jan 2013 12:07:41 UTC
Math::PlanePath - points on a path through the 2-D plane
This is a base class for some mathematical paths which map an integer position $n to and from coordinates "$x,$y" in the 2D plane. The current classes include the following. The intention is that any "Math::PlanePath::Something" is a PlanePath, and s...
KRYDE/Math-PlanePath-129 - 19 Jan 2021 06:32:01 UTC
Math::Polynomial - Perl class for polynomials in one variable
Math::Polynomial objects represent polynomials in one variable, i.e. expressions built with finitely many additions, subtractions and multiplications of the variable and some constants. A standard way of writing down a polynomial in one variable is a...
MHASCH/Math-Polynomial-1.021 - 03 Apr 2021 10:31:10 UTC
Math::BigInt::Lib - virtual parent class for Math::BigInt libraries
This module provides support for big integer calculations. It is not intended to be used directly, but rather as a parent class for backend libraries used by Math::BigInt, Math::BigFloat, Math::BigRat, and related modules. Other backend libraries inc...
PJACKLAM/Math-BigInt-1.999838 - 31 Mar 2023 14:34:44 UTC
Bundle::Math::Big - Bundle of modules related to arbitrary size numbers
This is a bundle of modules related to arbitrary size numbers. This also includes arbitrary precision number modules. Please have a look at Bundle::Math. If you would like to see a specific module included in a future version of this bundle, please s...
SMUELLER/Bundle-Math-Big-1.00 - 03 Apr 2004 16:12:40 UTC
Math::BigInt::GMP - backend library for Math::BigInt etc. based on GMP
Math::BigInt::GMP is a backend library for Math::BigInt, Math::BigFloat, Math::BigRat and related modules. Math::BigInt::GMP provides support for big integer calculations by means of the GMP C library. See <https://gmplib.org/> for more information a...
PJACKLAM/Math-BigInt-GMP-1.6012 - 03 Apr 2023 10:53:22 UTC
Math::BigInt::Pari - a math backend library based on Math::Pari
Math::BigInt::Pari inherits from Math::BigInt::Lib. Provides support for big integer in Math::BigInt et al. calculations via means of Math::Pari, an XS layer on top of the very fast PARI library....
PJACKLAM/Math-BigInt-Pari-1.3011 - 03 Apr 2023 16:15:22 UTC
Math::BigInt::Calc - pure Perl module to support Math::BigInt
Math::BigInt::Calc inherits from Math::BigInt::Lib. In this library, the numbers are represented interenally in base B = 10**N, where N is the largest possible integer that does not cause overflow in the intermediate computations. The base B elements...
PJACKLAM/Math-BigInt-1.999838 - 31 Mar 2023 14:34:44 UTC
Math::Calc::Parser - Parse and evaluate mathematical expressions
Math::Calc::Parser is a simplified mathematical expression evaluator with support for complex and trigonometric operations, implicit multiplication, and perlish "parentheses optional" functions, while being safe for arbitrary user input. It parses in...
DBOOK/Math-Calc-Parser-1.005 - 08 Oct 2019 21:39:58 UTC
Math::BigInt::GMPz - a math backend library based on Math::GMPz
Math::BigInt::GMPz is a backend library for Math::BigInt, Math::BigFloat, Math::BigRat and related modules. It is not indended to be used directly. Math::BigInt::GMPz uses Math::GMPz objects for the calculations. Math::GMPz is an XS layer on top of t...
PJACKLAM/Math-BigInt-GMPz-0.0011 - 03 Apr 2023 10:53:34 UTC
Math::Interpolator - interpolate between lazily-evaluated points
This class supports interpolation of a curve between known points, known as "knots", with the knots being lazily evaluated. An object of this type represents a set of knots on a one-dimensional curve, the knots possibly not being predetermined. The m...
ZEFRAM/Math-Interpolator-0.005 - 15 Feb 2012 21:00:24 UTC
Math::NumSeq::ReRound - sequence from repeated rounding up
This is the sequence of values formed by repeatedly rounding up to a multiple of i-1, i-2, ..., 2, 1. 1, 2, 4, 6, 10, 12, 18, 22, 30, 34, 42, 48, 58, 60, 78, ... starting i=1 For example i=5 start at 5, round up to a multiple of 4 to give 8, then rou...
KRYDE/Math-NumSeq-75 - 04 Jun 2022 12:11:23 UTC