/
home
/
techb158
/
immovalet.com
/
vendor
/
markbaker
/
matrix
/
examples
/
/home/techb158/immovalet.com/vendor/markbaker/matrix/examples
mkdir
upload
Name
Size
Mode
Actions
test.php
486
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/vendor/markbaker/matrix/examples/test.php
(486B)
<?php use Matrix\Matrix; use Matrix\Decomposition\QR; include __DIR__ . '/../vendor/autoload.php'; $grid = [ [1, 2], [3, 4], ]; $targetGrid = [ [-1], [-2], ]; $matrix = new Matrix($grid); $target = new Matrix($targetGrid); $decomposition = new QR($matrix); $X = $decomposition->solve($target); echo 'X', PHP_EOL; var_export($X->toArray()); echo PHP_EOL; $resolve = $matrix->multiply($X); echo 'Resolve', PHP_EOL; var_export($resolve->toArray()); echo PHP_EOL;
Save
cmd:
run