From cdfad2d003479aabef976056e482036b31927696 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Geron?= Date: Fri, 24 Apr 2020 16:54:38 +1200 Subject: [PATCH] Link to matrix multiplication and Hadarmard product --- tools_numpy.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools_numpy.ipynb b/tools_numpy.ipynb index dcb4030..fc73501 100644 --- a/tools_numpy.ipynb +++ b/tools_numpy.ipynb @@ -2118,8 +2118,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." ] }, { @@ -2155,7 +2155,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)))." ] }, {