Lapack
PHP Manual

Lapack::pseudoInverse

(PECL lapack >= 0.1.0)

Lapack::pseudoInverse — Calculer l'inverse d'une matrice

Description

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

Trouve la pseudo-inverse d'une matrice A.

Liste de paramètres

a

Matrice à inverser

Valeurs de retour

Matrice inversée (tableaux de tableaux).

Exemples

Exemple #1 Utilisation de Lapack::pseudoInverse():

<?php

   $a 
= array(
       array( 
8, 1, 6 ),
       array( 
3, 5, 7 ),
       array( 
4, 9, 2 ),
   );

   
$result = Lapack::pseudoInverse($a);

   
?>


Lapack
PHP Manual