ndarray
ndarray copied to clipboard
ndarray: an N-dimensional array with array views, multidimensional slicing, and efficient operations
# Summary This RFC proposes the creation of a documentation website for `ndarray` using [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/) and an expansion of our documentation to include Explainers, Tutorials, and How-Tos. The...
Just so I can keep track of a few things: - Some issues running tests with #1487 - Mainly caused by linspace only being available with `feature = "std"` -...
This is one of two PRs I'm working on that start to "traitify" ndarray. This trait is like the `Ndarray` trait suggested by @bluss in #339, but is slightly broader:...
We need to traitify the array types, so that we shift from using `ArrayBase` for generic programming to something more flexible. Imagine a sketch: ```rust pub fn std_axis(array: T) ->...
We need to rethink this conversion trait, I doubt it is seeing much use, it has an awkward name(?)
The current reference-to-reference operations defined in `impl_ops.rs` only allow for outputs where the output type is the same as the left-hand operand. This makes sense for reference-to-owned, where we can...
This one is really good, ndarray should adopt this (just need to change the code for each illu) http://www.astroml.org/book_figures/appendix/fig_broadcast_visual.html
The `abs(&self)` method in `BaseArray` only works for float arrays since it's defined as part of the _Element-wise methods for float arrays_ section. However, in my opinion, we should also...
A [recent change to `url`](https://github.com/servo/rust-url/issues/937) has caused `openblas-src`'s MSRV to bump to 1.67 (when using most recent dependencies). While this doesn't affect `ndarray` directly, it does affect the clarity and...