MathPHP\LinearAlgebra\VectorAxiomsTest::testPerpDotProductZero PHP Метод

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

Axiom: A⊥⋅A = 0 Perp dot product with itself will be zero.
    public function testPerpDotProductZero(array $A)
    {
        $A = new Vector($A);
        $A⊥⋅A = $A->perpDotProduct($A);
        $this->assertEquals(0, $A⊥⋅A);
    }