MathPHP\LinearAlgebra\MatrixOperationsTest::testCofactorMatrix PHP Метод

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

public testCofactorMatrix ( array $A, array $R )
$A array
$R array
    public function testCofactorMatrix(array $A, array $R)
    {
        $A = MatrixFactory::create($A);
        $R = new SquareMatrix($R);
        $this->assertEquals($R, $A->cofactorMatrix());
    }
MatrixOperationsTest