MathPHP\LinearAlgebra\DiagonalMatrixTest::testIsSquare PHP Метод

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

public testIsSquare ( array $A, array $R )
$A array
$R array
    public function testIsSquare(array $A, array $R)
    {
        $D = new DiagonalMatrix($A);
        $this->assertTrue($D->isSquare());
    }