The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "Math::Complex"

Math::Complex - complex numbers and associated mathematical functions River stage four • 112 direct dependents • 2297 total dependents

This package lets you create and manipulate complex numbers. By default, *Perl* limits itself to real numbers, but an extra "use" statement brings full complex support, along with a full set of mathematical functions typically associated with and/or ...

ZEFRAM/Math-Complex-1.59 - 01 Feb 2012 23:39:04 UTC - Search in distribution

Math::GSL::Complex - Complex Numbers River stage one • 5 direct dependents • 6 total dependents

Here is a list of all the functions included in this module : "gsl_complex_arg($z)" Return the argument of the complex number $z "gsl_complex_abs($z)" Return |$z|, the magnitude of the complex number $z "gsl_complex_rect($x,$y)" Create a complex numb...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC - Search in distribution

Math::Cephes::Complex - Perl interface to the cephes complex number routines River stage two • 11 direct dependents • 18 total dependents

This module is a layer on top of the basic routines in the cephes math library to handle complex numbers. A complex number is created via any of the following syntaxes: my $f = Math::Cephes::Complex->new(3, 2); # $f = 3 + 2 i my $g = new Math::Cephes...

SHLOMIF/Math-Cephes-0.5305 - 06 May 2016 15:18:54 UTC - Search in distribution
  • Math::Cephes - perl interface to the cephes math library
  • pmath - simple command line interface to Math::Cephes

Math::SymbolicX::Complex - Complex number support for the Math::Symbolic parser River stage one • 1 direct dependent • 1 total dependent

This module adds complex number support to Math::Symbolic. It does so by extending the parser of the Math::Symbolic module (that is, the one stored in $Math::Symbolic::Parser) with certain special functions that create complex constants. (Math::Symbo...

SMUELLER/Math-SymbolicX-Complex-1.01 - 14 May 2013 17:00:13 UTC - Search in distribution

Sah::Schema::math::complex - Complex number River stage one • 1 direct dependent • 1 total dependent

A Math::Complex object, coercible from string in the form of "<a> + <b>i"....

PERLANCAR/Sah-Schemas-Math-0.003 - 07 Jan 2022 00:06:24 UTC - Search in distribution

LaTeX::TikZ::Point::Math::Complex - Coerce Math::Complex points into LaTeX::TikZ::Point objects. River stage one • 1 direct dependent • 1 total dependent

VPIT/LaTeX-TikZ-0.03 - 23 Apr 2015 01:58:07 UTC - Search in distribution
  • LaTeX::TikZ - Perl object model for generating PGF/TikZ code.

Math::GComplex - Generic complex number library. River stage zero No dependents

Math::GComplex is a lightweight library, providing a generic interface to complex number operations, accepting any type of number as a component of a complex number, including native Perl numbers and numerical objects provided by other mathematical l...

TRIZEN/Math-GComplex-0.13 - 07 Feb 2019 05:44:03 UTC - Search in distribution

Math::Complex_C - perl interface to C's double precision complex operations. River stage zero No dependents

use warnings; use strict; use Math::Complex_C qw(:all); # For brevity, use MCD which is an alias for Math::Complex_C::new my $c = MCD(12.5, 1125); # assign as NV my $root = MCD(); sqrt_c($root, $c); print "Square root of $c is $root\n"; See also the ...

SISYPHUS/Math-Complex_C-0.16 - 06 Jul 2022 12:31:40 UTC - Search in distribution

Math::Complex_C::L - perl interface to C's long double complex operations. River stage zero No dependents

use warnings; use strict; use Math::Complex_C::L qw(:all); # For brevity, use MCL which is an alias for Math::Complex_C::L::new my $c = MCL(12.5, 1125); # assign as NV my $root = MCL(); sqrt_cl($root, $c); print "Square root of $c is $root\n"; See al...

SISYPHUS/Math-Complex_C-L-0.08 - 07 Feb 2022 05:10:30 UTC - Search in distribution

Math::Complex_C::Q - perl interface to C's __complex128 (quadmath) operations. River stage zero No dependents

use warnings; use strict; use Math::Complex_C::Q qw(:all); # For brevity, use MCQ which is an alias for Math::Complex_C::Q::new my $c = MCQ(12.5, 1125); # assign as NV my $root = MCQ(); sqrt_cq($root, $c); print "Square root of $c is $root\n"; See al...

SISYPHUS/Math-Complex_C-Q-0.07 - 05 Feb 2022 05:23:30 UTC - Search in distribution

Math::PlanePath::ComplexPlus - points in complex base i+r River stage one • 3 direct dependents • 4 total dependents

This path traverses points by a complex number base i+r for integer r>=1. The default is base i+1 30 31 14 15 5 28 29 12 13 4 26 27 22 23 10 11 6 7 3 24 25 20 21 8 9 4 5 2 62 63 46 47 18 19 2 3 1 60 61 44 45 16 17 0 1 <- Y=0 58 59 54 55 42 43 38 39 -...

KRYDE/Math-PlanePath-129 - 19 Jan 2021 06:32:01 UTC - Search in distribution

Inline::Octave - Inline octave code into your perl River stage zero No dependents

Inline::Octave gives you the power of the octave programming language from within your Perl programs. Basically, I create an octave process with controlled stdin and stdout. Commands send by stdin. Data is send by stdin and read with fread(stdin, [di...

AADLER/Inline-Octave-0.31 - 13 Feb 2011 20:32:59 UTC - Search in distribution

PDL::Complex::Overloads - subclass of Math::Complex with overload fallbacks River stage three • 93 direct dependents • 101 total dependents

This is a subclass whose only purpose is to provide Math::Complex's overloads but with "fallback" true, mainly to allow string-comparison for backwards compatibility....

ETJ/PDL-2.088 - 21 Apr 2024 23:58:19 UTC - Search in distribution

Data::Math - arithmetic operations on complex data structures River stage zero No dependents

Data::Math is for doing arithmetic operations on roughly parallel data structures. It's pretty clear what a line like this would be meant to do, though Perl does nothing useful with it: %net = %gross - %costs; Instead, Data::Math's calc method can be...

DOOM/Data-Math-0.01 - 19 Jan 2017 00:54:19 UTC - Search in distribution

Math::MPC - perl interface to the MPC (multi precision complex) library. River stage one • 1 direct dependent • 3 total dependents

A multiple precision complex number module utilising the MPC library. Basically, this module simply wraps the 'mpc' complex number functions provided by that library. Operator overloading is also available. The following documentation heavily plagiar...

SISYPHUS/Math-MPC-1.32 - 15 Jan 2024 12:42:01 UTC - Search in distribution

Math::BigInt - arbitrary size integer math package River stage four • 209 direct dependents • 1676 total dependents

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-2.003002 - 06 Jan 2024 12:38:23 UTC - Search in distribution

ToolSet::Math - Bring in common math functions and constants. River stage zero No dependents

This module automatically exports convenience math functions and constants which are not available by default in Perl, such as "ceil", "floor", "round", "log10" and trigonometric ones like "tan", "asin", "cosec", and "deg2rad". It also sets up suppor...

GLAI/ToolSet-Math-1.002 - 17 Jan 2022 19:26:17 UTC - Search in distribution

Math::Libm - Perl extension for the C math library, libm River stage one • 2 direct dependents • 6 total dependents

This module is a translation of the C math.h file. It exports the following selected constants and functions. EXPORT None by default. Exportable constants M_1_PI M_2_PI M_2_SQRTPI M_E M_LN10 M_LN2 M_LOG10E M_LOG2E M_PI M_PI_2 M_PI_4 M_SQRT1_2 M_SQRT2...

DSLEWART/Math-Libm-1.00 - 25 Jun 2000 07:39:32 UTC - Search in distribution

Fsdb - a flat-text database for shell scripting River stage zero No dependents

JOHNH/Fsdb-3.4 - 06 Jan 2024 06:43:43 UTC - Search in distribution

perltidy - a perl script indenter and reformatter River stage three • 77 direct dependents • 143 total dependents

Perltidy reads a perl script and writes an indented, reformatted script. The formatting process involves converting the script into a string of tokens, removing any non-essential whitespace, and then rewriting the string of tokens with whitespace usi...

SHANCOCK/Perl-Tidy-20240202 - 01 Feb 2024 13:55:33 UTC - Search in distribution
159 results (0.144 seconds)