Skip to content

Commit 7f4b387

Browse files
committed
MAINT: Add missing numpy import.
1 parent 990e1c1 commit 7f4b387

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

content/tutorial-svd.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ plt.show()
177177
Now, applying the [linalg.svd](https://numpy.org/devdocs/reference/generated/numpy.linalg.svd.html#numpy.linalg.svd) function to this matrix, we obtain the following decomposition:
178178

179179
```{code-cell}
180+
import numpy as np
180181
U, s, Vt = np.linalg.svd(img_gray)
181182
```
182183

0 commit comments

Comments
 (0)