Skip to content

Commit 192249b

Browse files
committed
Use note directive.
1 parent 7abd383 commit 192249b

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

content/tutorial-svd.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,19 @@ It is possible to use methods from linear algebra to approximate an existing set
151151

152152
+++
153153

154-
**Note**: We will use NumPy's linear algebra module, [numpy.linalg](https://numpy.org/devdocs/reference/routines.linalg.html#module-numpy.linalg), to perform the operations in this tutorial. Most of the linear algebra functions in this module can also be found in [scipy.linalg](https://docs.scipy.org/doc/scipy/reference/linalg.html#module-scipy.linalg), and users are encouraged to use the [scipy](https://docs.scipy.org/doc/scipy/reference/index.html#module-scipy) module for real-world applications. However, some functions in the [scipy.linalg](https://docs.scipy.org/doc/scipy/reference/linalg.html#module-scipy.linalg) module, such as the SVD function, only support 2D arrays. For more information on this, check the [scipy.linalg page](https://docs.scipy.org/doc/scipy/tutorial/linalg.html).
154+
```{note}
155+
We will use NumPy's linear algebra module,
156+
[numpy.linalg](https://numpy.org/devdocs/reference/routines.linalg.html#module-numpy.linalg),
157+
to perform the operations in this tutorial.
158+
Most of the linear algebra functions in this module can also be found in
159+
[scipy.linalg](https://docs.scipy.org/doc/scipy/reference/linalg.html#module-scipy.linalg),
160+
and users are encouraged to use the [scipy](https://docs.scipy.org/doc/scipy/reference/index.html#module-scipy)
161+
module for real-world applications.
162+
However, some functions in the
163+
[scipy.linalg](https://docs.scipy.org/doc/scipy/reference/linalg.html#module-scipy.linalg)
164+
module, such as the SVD function, only support 2D arrays.
165+
For more information on this, check the [scipy.linalg page](https://docs.scipy.org/doc/scipy/tutorial/linalg.html).
166+
```
155167

156168
+++
157169

0 commit comments

Comments
 (0)