Lapack::pseudoInverse
(PECL lapack >= 0.1.0)
Lapack::pseudoInverse — Calculate the inverse of a matrix
Opis
public static array Lapack::pseudoInverse
( array
$a
)Find the pseudoinverse of a matrix A.
Parametry
-
a -
Matrix to invert
Zwracane wartości
Inverted matrix (array of arrays).
Przykłady
Przykład #1 Using Lapack::pseudoInverse():
<?php
$a = array(
array( 8, 1, 6 ),
array( 3, 5, 7 ),
array( 4, 9, 2 ),
);
$result = Lapack::pseudoInverse($a);
?>
There are no user contributed notes for this page.
