MathPHP\LinearAlgebra\DiagonalMatrixTest::testIsSymmetric PHP Method

testIsSymmetric() public method

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