The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "module:Math::Matrix"

Math::Matrix - multiply and invert matrices River stage one • 5 direct dependents • 6 total dependents

This module implements various constructors and methods for creating and manipulating matrices. All methods return new objects, so, for example, "$X->add($Y)" does not modify $X. $X -> add($Y); # $X not modified; output is lost $X = $X -> add($Y); # ...

PJACKLAM/Math-Matrix-0.94 - 13 Jan 2021 13:22:59 UTC

Math::GSL::Matrix - Mathematical functions concerning Matrices River stage one • 5 direct dependents • 6 total dependents

This module is part of the Math::GSL distribution. It defines a Perl insterface to GNU Scientific Library matrices. There are two different (but not exclusive) ways to use this module: using the OO API, built manually over the GSL functions, or using...

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

Meta::Math::Matrix - matrix class. River stage zero No dependents

This is a classic matrix. It has a size and makes sure all elements conform to it. Currently it doesn't do very much except help you forget about how to actually store the values. You can store values of whatever type you want in this matrix....

VELTZER/Meta-0.08 - 31 Dec 2002 10:05:41 UTC

Math::Matrix::Banded - non-zero entries confined to a diagonal band River stage one • 1 direct dependent • 1 total dependent

A banded matrix (or band matrix or band diagonal matrix) is a matrix whose non-zero columns are confined to a diagonal band. Obviously, such a structure allows for more efficient storage and computation than for a general matrix. CAVEAT: This is a yo...

LGEHLEN/Math-Matrix-Banded-0.004 - 07 Sep 2020 13:16:02 UTC

Math::Cephes::Matrix - Perl interface to the cephes matrix 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 for operations on square matrices. In the following, a Math::Cephes::Matrix object is created as my $M = Math::Cephes::Matrix->new($arr_ref); where $arr_ref is a reference...

SHLOMIF/Math-Cephes-0.5305 - 06 May 2016 15:18:54 UTC

Math::Lapack::Matrix River stage zero No dependents

RUISTEVE/Math-Lapack-0.002 - 06 Apr 2019 11:33:04 UTC

Bundle::Math::Matrix - Bundle related to math with matrices or vectors River stage zero No dependents

This is a bundle of modules related to math with matrices or vectors. 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 send me an email or use rt.cpan.org....

SMUELLER/Bundle-Math-Matrix-1.01 - 15 May 2005 17:49:51 UTC

Math::FastGF2::Matrix - Matrix operations for fast Galois Field arithmetic River stage one • 1 direct dependent • 1 total dependent

This module provides basic functionality for handling matrices of Galois Field elements. It is a fairly "close to the metal" implementation using the C language to store the underlying object and handle performance-critical tasks such as bulk input/o...

DMALONE/Math-FastGF2-0.07 - 13 Sep 2019 14:09:19 UTC

Math::Matrix::MaybeGSL - Uniform use of Math::MatrixReal and Math::GSL::Matrix. River stage one • 1 direct dependent • 1 total dependent

This module interfaces with "Math::GSL::Matrix" or, if that is not available, "Math::MatrixReal". The idea behind this module is to allow the development of tools that use matrices that will work in pure Perl (using "Math::MatrixReal") or with extra ...

AMBS/Math-Matrix-MaybeGSL-0.008 - 24 Jan 2023 19:59:59 UTC

Math::Matrix::Banded::Square - banded square matrix River stage one • 1 direct dependent • 1 total dependent

LGEHLEN/Math-Matrix-Banded-0.004 - 07 Sep 2020 13:16:02 UTC

Math::Matrix::Banded::Rectangular - banded non-square matrix River stage one • 1 direct dependent • 1 total dependent

LGEHLEN/Math-Matrix-Banded-0.004 - 07 Sep 2020 13:16:02 UTC

lib/Math/Zap/Matrix.pm River stage zero No dependents

PRBRENAN/Math-Zap-1.07 - 14 Jun 2004 22:31:46 UTC

lib/ICC/Shared.pm River stage zero No dependents

BIRKETT/ICC-Profile-0.82 - 09 Feb 2020 16:59:34 UTC

Math::GMatrix - Extension of Math::Matrix for (2D graphics-)vector manipulation River stage zero No dependents

The following methods are available: new Constructor arguments are a list of references to arrays of the same length. The arrays are copied. The method returns undef in case of error. $a = new Math::Matrix ([rand,rand,rand], [rand,rand,rand], [rand,r...

ACESTER/Math-GMatrix-0.2 - 11 Feb 2004 20:19:38 UTC

Math::MatrixReal - Matrix of Reals River stage two • 9 direct dependents • 23 total dependents

LETO/Math-MatrixReal-2.13 - 25 Sep 2016 19:05:41 UTC

Math::MatrixBool - Matrix of Booleans River stage one • 2 direct dependents • 2 total dependents

This class lets you dynamically create boolean matrices of arbitrary size and perform all the basic operations for matrices on them, like - setting or deleting elements, - testing wether a certain element is set, - computing the sum, difference, prod...

STBEY/Math-MatrixBool-5.8 - 06 Oct 2009 08:20:51 UTC

Math::MatrixSparse - Perl extension for sparse matrices. River stage zero No dependents

* "use Math::MatrixSparse;" Load the module and make its methods and operators available. CREATION AND INPUT-OUTPUT METHODS * "Math::MatrixSparse->new($name)" "new Math::MatrixSparse($name)" Creates a new empty matrix named $name, which may be undef....

KESINGER/Math-MatrixSparse-0.01 - 06 Jul 2002 19:34:30 UTC

Math::SparseMatrix - Provides basic sparse matrix operations such as creation, reading from file, reading transpose from file and writing to file. River stage one • 2 direct dependents • 2 total dependents

Math::SparseMatrix provides simple sparse matrix functionality such as creation of sparse matrices, writing them out to a file, reading matrices from files and reading transpose of a matrix stored in a file....

TPEDERSE/Math-SparseMatrix-0.03 - 06 Apr 2008 21:02:23 UTC

Math::MatrixDecomposition - matrix decompositions and its applications River stage zero No dependents

The design goals of this package are listed in the following table. * Pure Perl code, that means no external dependencies except core modules and other pure Perl modules. * Native data types for operands, that means no dedicated classes for vectors a...

RALPH/Math-MatrixDecomposition-1.06 - 30 Jan 2022 14:46:29 UTC

Math::GSL::SparseMatrix - Sparse Matrices River stage one • 5 direct dependents • 6 total dependents

NOTE: This module requires GSL 2.0 or higher. For more informations on the functions, we refer you to the GSL official documentation: <http://www.gnu.org/software/gsl/manual/html_node/>...

HAKONH/Math-GSL-0.44 - 01 Dec 2023 19:49:12 UTC
112 results (0.031 seconds)