fix: Fix typo

'abddition' to 'addition'
This commit is contained in:
PedroHRPBS 2018-09-22 17:18:14 -03:00
parent 70858d0e34
commit eaa4c641f3

View File

@ -534,7 +534,7 @@
"source": [
"x = np.array([[1., 2.],\n",
" [3., 4.]])\n",
"print('abddition:\\n', x + x)\n",
"print('addition:\\n', x + x)\n",
"print('\\nelement-wise multiplication\\n', x * x)\n",
"print('\\nmultiplication\\n', np.dot(x, x))\n",
"print('\\ndot is also a member of np.array\\n', x.dot(x))"