mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-11 08:10:56 +00:00
268 lines
5.9 KiB
PHP
268 lines
5.9 KiB
PHP
<?php
|
|
|
|
declare (strict_types = 1);
|
|
|
|
namespace Phpml\Math;
|
|
|
|
use Phpml\Exception\InvalidArgumentException;
|
|
use Phpml\Exception\MatrixException;
|
|
|
|
class Matrix
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $matrix;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
private $rows;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
private $columns;
|
|
|
|
/**
|
|
* @var float
|
|
*/
|
|
private $determinant;
|
|
|
|
/**
|
|
* @param array $matrix
|
|
* @param bool $validate
|
|
*
|
|
* @throws InvalidArgumentException
|
|
*/
|
|
public function __construct(array $matrix, bool $validate = true)
|
|
{
|
|
$this->rows = count($matrix);
|
|
$this->columns = count($matrix[0]);
|
|
|
|
if ($validate) {
|
|
for ($i = 0; $i < $this->rows; ++$i) {
|
|
if (count($matrix[$i]) !== $this->columns) {
|
|
throw InvalidArgumentException::matrixDimensionsDidNotMatch();
|
|
}
|
|
}
|
|
}
|
|
|
|
$this->matrix = $matrix;
|
|
}
|
|
|
|
/**
|
|
* @param array $array
|
|
*
|
|
* @return Matrix
|
|
*/
|
|
public static function fromFlatArray(array $array)
|
|
{
|
|
$matrix = [];
|
|
foreach ($array as $value) {
|
|
$matrix[] = [$value];
|
|
}
|
|
|
|
return new self($matrix);
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function toArray()
|
|
{
|
|
return $this->matrix;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getRows()
|
|
{
|
|
return $this->rows;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getColumns()
|
|
{
|
|
return $this->columns;
|
|
}
|
|
|
|
/**
|
|
* @param $column
|
|
*
|
|
* @return array
|
|
*
|
|
* @throws MatrixException
|
|
*/
|
|
public function getColumnValues($column)
|
|
{
|
|
if ($column >= $this->columns) {
|
|
throw MatrixException::columnOutOfRange();
|
|
}
|
|
|
|
$values = [];
|
|
for ($i = 0; $i < $this->rows; ++$i) {
|
|
$values[] = $this->matrix[$i][$column];
|
|
}
|
|
|
|
return $values;
|
|
}
|
|
|
|
/**
|
|
* @return float|int
|
|
*
|
|
* @throws MatrixException
|
|
*/
|
|
public function getDeterminant()
|
|
{
|
|
if ($this->determinant) {
|
|
return $this->determinant;
|
|
}
|
|
|
|
if (!$this->isSquare()) {
|
|
throw MatrixException::notSquareMatrix();
|
|
}
|
|
|
|
$determinant = 0;
|
|
if ($this->rows == 1 && $this->columns == 1) {
|
|
$determinant = $this->matrix[0][0];
|
|
} elseif ($this->rows == 2 && $this->columns == 2) {
|
|
$determinant =
|
|
$this->matrix[0][0] * $this->matrix[1][1] -
|
|
$this->matrix[0][1] * $this->matrix[1][0];
|
|
} else {
|
|
for ($j = 0; $j < $this->columns; ++$j) {
|
|
$subMatrix = $this->crossOut(0, $j);
|
|
$minor = $this->matrix[0][$j] * $subMatrix->getDeterminant();
|
|
$determinant += fmod($j, 2) == 0 ? $minor : -$minor;
|
|
}
|
|
}
|
|
|
|
return $this->determinant = $determinant;
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isSquare()
|
|
{
|
|
return $this->columns === $this->rows;
|
|
}
|
|
|
|
/**
|
|
* @return Matrix
|
|
*/
|
|
public function transpose()
|
|
{
|
|
$newMatrix = [];
|
|
for ($i = 0; $i < $this->rows; ++$i) {
|
|
for ($j = 0; $j < $this->columns; ++$j) {
|
|
$newMatrix[$j][$i] = $this->matrix[$i][$j];
|
|
}
|
|
}
|
|
|
|
return new self($newMatrix, false);
|
|
}
|
|
|
|
/**
|
|
* @param Matrix $matrix
|
|
*
|
|
* @return Matrix
|
|
*
|
|
* @throws InvalidArgumentException
|
|
*/
|
|
public function multiply(Matrix $matrix)
|
|
{
|
|
if ($this->columns != $matrix->getRows()) {
|
|
throw InvalidArgumentException::inconsistentMatrixSupplied();
|
|
}
|
|
|
|
$product = [];
|
|
$multiplier = $matrix->toArray();
|
|
for ($i = 0; $i < $this->rows; ++$i) {
|
|
for ($j = 0; $j < $matrix->getColumns(); ++$j) {
|
|
$product[$i][$j] = 0;
|
|
for ($k = 0; $k < $this->columns; ++$k) {
|
|
$product[$i][$j] += $this->matrix[$i][$k] * $multiplier[$k][$j];
|
|
}
|
|
}
|
|
}
|
|
|
|
return new self($product, false);
|
|
}
|
|
|
|
/**
|
|
* @param $value
|
|
*
|
|
* @return Matrix
|
|
*/
|
|
public function divideByScalar($value)
|
|
{
|
|
$newMatrix = array();
|
|
for ($i = 0; $i < $this->rows; ++$i) {
|
|
for ($j = 0; $j < $this->columns; ++$j) {
|
|
$newMatrix[$i][$j] = $this->matrix[$i][$j] / $value;
|
|
}
|
|
}
|
|
|
|
return new self($newMatrix, false);
|
|
}
|
|
|
|
/**
|
|
* @return Matrix
|
|
*
|
|
* @throws MatrixException
|
|
*/
|
|
public function inverse()
|
|
{
|
|
if (!$this->isSquare()) {
|
|
throw MatrixException::notSquareMatrix();
|
|
}
|
|
|
|
$newMatrix = array();
|
|
for ($i = 0; $i < $this->rows; ++$i) {
|
|
for ($j = 0; $j < $this->columns; ++$j) {
|
|
$subMatrix = $this->crossOut($i, $j);
|
|
if (fmod($i + $j, 2) == 0) {
|
|
$newMatrix[$i][$j] = ($subMatrix->getDeterminant());
|
|
} else {
|
|
$newMatrix[$i][$j] = -($subMatrix->getDeterminant());
|
|
}
|
|
}
|
|
}
|
|
|
|
$cofactorMatrix = new self($newMatrix, false);
|
|
|
|
return $cofactorMatrix->transpose()->divideByScalar($this->getDeterminant());
|
|
}
|
|
|
|
/**
|
|
* @param int $row
|
|
* @param int $column
|
|
*
|
|
* @return Matrix
|
|
*/
|
|
public function crossOut(int $row, int $column)
|
|
{
|
|
$newMatrix = [];
|
|
$r = 0;
|
|
for ($i = 0; $i < $this->rows; ++$i) {
|
|
$c = 0;
|
|
if ($row != $i) {
|
|
for ($j = 0; $j < $this->columns; ++$j) {
|
|
if ($column != $j) {
|
|
$newMatrix[$r][$c] = $this->matrix[$i][$j];
|
|
++$c;
|
|
}
|
|
}
|
|
++$r;
|
|
}
|
|
}
|
|
|
|
return new self($newMatrix, false);
|
|
}
|
|
}
|