Skip to content

Commit

Permalink
Link to matrix multiplication and Hadarmard product
Browse files Browse the repository at this point in the history
  • Loading branch information
ageron committed Apr 24, 2020
1 parent 674ee5b commit e677bef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools_numpy.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -3818,8 +3818,8 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Matrix dot product\n",
"Let's create two matrices and execute a matrix [dot product](https://en.wikipedia.org/wiki/Dot_product) using the `dot` method."
"## Matrix multiplication\n",
"Let's create two matrices and execute a [matrix multiplication](https://en.wikipedia.org/wiki/Matrix_multiplication) using the `dot()` method."
]
},
{
Expand Down Expand Up @@ -3894,7 +3894,7 @@
"cell_type": "markdown",
"metadata": {},
"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)))."
]
},
{
Expand Down

0 comments on commit e677bef

Please sign in to comment.