Skip to content

Commit a802879

Browse files
committed
Use raises-exception tag.
1 parent cdf6575 commit a802879

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

content/tutorial-svd.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,9 +230,10 @@ U.shape, s.shape, Vt.shape
230230
```
231231

232232
Note that `s` has a particular shape: it has only one dimension. This means that some linear algebra functions that expect 2d arrays might not work. For example, from the theory, one might expect `s` and `Vt` to be
233-
compatible for multiplication. However, this is not true as `s` does not have a second axis. Executing
233+
compatible for multiplication. However, this is not true as `s` does not have a second axis:
234234

235-
```python
235+
```{code-cell}
236+
:tags: [raises-exception]
236237
s @ Vt
237238
```
238239

0 commit comments

Comments
 (0)