MathPHP\LinearAlgebra\SquareMatrixTest::testIsSquare PHP Method

testIsSquare() public method

public testIsSquare ( array $A )
$A array
    public function testIsSquare(array $A)
    {
        $S = new SquareMatrix($A);
        $M = new Matrix($A);
        $this->assertTrue($S->isSquare());
    }