Create README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2023-12-27 13:45:41 +01:00 committed by GitHub
parent b9dcef86b4
commit b0d5df6d22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

27
numpy/nditer/README.md Normal file
View file

@ -0,0 +1,27 @@
# nditer
{:.no_toc}
<nav markdown="1" class="toc-class">
* TOC
{:toc}
</nav>
## The goal
More iterating over an array...
Questions to [David Rotermund](mailto:davrot@uni-bremen.de)
{: .topic-optional}
This is an optional topic!
## [numpy.nditer](https://numpy.org/doc/stable/reference/generated/numpy.nditer.html)
```python
class numpy.nditer(op, flags=None, op_flags=None, op_dtypes=None, order='K', casting='safe', op_axes=None, itershape=None, buffersize=0)
```
> Efficient multi-dimensional iterator object to iterate over arrays. To get started using this object, see the [introductory guide to array iteration](https://numpy.org/doc/stable/reference/arrays.nditer.html#arrays-nditer).