downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Lapack::singularValues> <Lapack::leastSquaresBySVD
[edit] Last updated: Fri, 24 May 2013

view this page in

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);

   
?>



add a note add a note User Contributed Notes Lapack::pseudoInverse - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites