Link to matrix multiplication and Hadarmard product

main
Aurélien Geron 2020-04-24 16:54:38 +12:00
parent 8fb49ea7e0
commit cdfad2d003
1 changed files with 3 additions and 3 deletions

View File

@ -2118,8 +2118,8 @@
"cell_type": "markdown", "cell_type": "markdown",
"metadata": {}, "metadata": {},
"source": [ "source": [
"## Matrix dot product\n", "## Matrix multiplication\n",
"Let's create two matrices and execute a matrix [dot product](https://en.wikipedia.org/wiki/Dot_product) using the `dot` method." "Let's create two matrices and execute a [matrix multiplication](https://en.wikipedia.org/wiki/Matrix_multiplication) using the `dot()` method."
] ]
}, },
{ {
@ -2155,7 +2155,7 @@
"cell_type": "markdown", "cell_type": "markdown",
"metadata": {}, "metadata": {},
"source": [ "source": [
"**Caution**: as mentionned previously, `n1*n2` is *not* a dot product, it is an elementwise product." "**Caution**: as mentionned previously, `n1*n2` is *not* a matric multiplication, it is an elementwise product (also called a [Hadamard product](https://en.wikipedia.org/wiki/Hadamard_product_(matrices)))."
] ]
}, },
{ {