diff --git a/numpy/ravel_unravel/README.md b/numpy/ravel_unravel/README.md new file mode 100644 index 0000000..c08bf98 --- /dev/null +++ b/numpy/ravel_unravel/README.md @@ -0,0 +1,31 @@ +# Ravel and UnRavel +{:.no_toc} + + + +## Top + +Questions to [David Rotermund](mailto:davrot@uni-bremen.de) + +## [numpy.ravel_multi_index](https://numpy.org/doc/stable/reference/generated/numpy.ravel_multi_index.html) + +```python +numpy.ravel_multi_index(multi_index, dims, mode='raise', order='C') +``` + +> Converts a tuple of index arrays into an array of flat indices, applying boundary modes to the multi-index. + +## [numpy.unravel_index](https://numpy.org/doc/stable/reference/generated/numpy.unravel_index.html) + +```python +numpy.unravel_index(indices, shape, order='C') +``` + +> Converts a flat index or array of flat indices into a tuple of coordinate arrays. + + + +