Link to matrix multiplication and Hadarmard product
parent
8fb49ea7e0
commit
cdfad2d003
|
@ -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)))."
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue