Lapack::leastSquaresBySVD

(PECL lapack >= 0.1.0)

Lapack::leastSquaresBySVDRésoudre le problème des moindres carrés linéaires, en utilisant SVD

Description

public static array Lapack::leastSquaresBySVD ( array $a , array $b )

Résoudre le problème des moindres carrés linéaires, trouver min x in || B - Ax || Retourne un tableau représentant x. S'attends à des tableaux de tableaux, et retournera un tableau de tableaux dans la dimension nombre de colonnes de B x nombre de colonnes de A. Utilise SVD avec l'agorithme "diviser pour régner".

Liste de paramètres

a

Matrice A

b

Matrice B

Valeurs de retour

Retourne la solution en un tableau de tableaux.

Exemples

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

<?php

  $a = array(
	  array( 1.44,  -7.84,  -4.39,   4.53),
	  array(-9.96,  -0.28,  -3.24,   3.83),
	  array(-7.55,   3.24,   6.27,  -6.64),
	  array( 8.34,   8.09,   5.28,   2.06),
	  array( 7.08,   2.52,   0.74,  -2.47),
	  array(-5.45,  -5.70,  -1.19,   4.70),
  );

  $b = array(
	  array( 8.58,   9.35),
	  array( 8.26,  -4.43),
	  array( 8.48,  -0.70),
	  array(-5.28,  -0.26),
	  array( 5.72,  -7.36),
	  array( 8.93,  -2.52),		   
  );

  $result = Lapack::leastSquaresBySVD($a, $b);
  
  ?>

LoadingChargement en cours