MathPHP\LinearAlgebra\SquareMatrixTest::testGetMatrix PHP Метод

testGetMatrix() публичный Метод

public testGetMatrix ( array $A )
$A array
    public function testGetMatrix(array $A)
    {
        $S = new SquareMatrix($A);
        $M = new Matrix($A);
        $this->assertEquals($M->getMatrix(), $S->getMatrix());
    }