MathPHP\LinearAlgebra\ColumnVectorTest::testConstructor PHP Method

testConstructor() public method

public testConstructor ( array $M, array $V )
$M array
$V array
    public function testConstructor(array $M, array $V)
    {
        $C = new ColumnVector($M);
        $V = new Matrix($V);
        $this->assertInstanceOf('MathPHP\\LinearAlgebra\\ColumnVector', $C);
        $this->assertInstanceOf('MathPHP\\LinearAlgebra\\Matrix', $C);
        foreach ($M as $row => $value) {
            $this->assertEquals($value, $V[$row][0]);
        }
        $this->assertEquals(count($M), $V->getM());
        $this->assertEquals(1, $V->getN());
    }