PHP 7.0.6 Released

Lapack::pseudoInverse

(PECL lapack >= 0.1.0)

Lapack::pseudoInverseCalculate the inverse of a matrix

Description

public static array Lapack::pseudoInverse ( array $a )

Find the pseudoinverse of a matrix A.

Parameters

a

Matrix to invert

Return Values

Inverted matrix (array of arrays).

Examples

Example #1 Using Lapack::pseudoInverse():

<?php

   $a 
= array(
       array( 
81),
       array( 
35),
       array( 
49),
   );

   
$result Lapack::pseudoInverse($a);

   
?>

User Contributed Notes

There are no user contributed notes for this page.
To Top