g trouvé cet exemple
use Math::Matrix;
srand(time);
$a = new Math::Matrix ([rand,rand,rand],
[rand,rand,rand],
[rand,rand,rand]);
$x = new Math::Matrix ([rand,rand,rand]);
$a->print("A\n" );
$E = $a->concat($x->transpose);
$E->print("Equation system\n" );
$s = $E->solve;
$s->print("Solutions s\n" );
$a->multiply($s)->print("A*s\n" );
sur www.cpan.org
g oublié un truc méga important
@mat3 == [rand,rand,rand];
a moins que tu l'ai utiliser comme
@mat3[i][j]
---------------
Tout à commencé par un rêve...