NumPHPTest\Core\NumArray\DotTest::testDotVector3Matrix4x1 PHP Метод

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

Test if InvalidArgumentException will be thrown, when using NumArray::dot with a vector and matrix that are not align
    public function testDotVector3Matrix4x1()
    {
        $numArray1 = NumPHP::arange(1, 3);
        $numArray2 = NumPHP::arange(2, 5)->reshape(4, 1);
        $numArray1->dot($numArray2);
    }