MathPHP\LinearAlgebra\MatrixAxiomsTest::testTransposeOfTransposeIsOriginalMatrix PHP Method

testTransposeOfTransposeIsOriginalMatrix() public method

(Aᵀ)ᵀ = A The transpose of the transpose is the original matrix.
    public function testTransposeOfTransposeIsOriginalMatrix(array $A)
    {
        $A = MatrixFactory::create($A);
        $⟮A⁻ᵀ⟯ᵀ = $A->transpose()->transpose();
        $this->assertEquals($⟮A⁻ᵀ⟯ᵀ->getMatrix(), $A->getMatrix());
    }
MatrixAxiomsTest