NumPHPTest\Core\NumArray\DotTest::testDotMatrix3x4Matrix3x3 PHP Method

testDotMatrix3x4Matrix3x3() public method

Tests if InvalidArgumentException will be thrown, when using NumArray::dot with two matrices that are not align
    public function testDotMatrix3x4Matrix3x3()
    {
        $numArray1 = NumPHP::arange(1, 12)->reshape(3, 4);
        $numArray2 = NumPHP::arange(1, 9)->reshape(3, 3);
        $numArray1->dot($numArray2);
    }