Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2023-12-19 10:59:44 +01:00 committed by GitHub
parent 9054ad98e3
commit 396d0dc57a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -123,7 +123,7 @@ print(type(data[0:1, 0:1, 0:1])) # -> <class 'numpy.ndarray'>
**Please understand this creates a view which is connected to original data.** If necessary make a **copy()**.
## Adding dimensions with np.newaxis
## Adding dimensions with [np.newaxis](https://numpy.org/doc/stable/reference/constants.html#numpy.newaxis)
```python
import numpy as np