akern40
akern40
I am currently working on implementing an acquisition function to find contours levels; in order to do so, the acquisition function takes in a set of "integration points" from within...
Allows the creation of arrays up to and including 6 dimensions, and causes a compiler error on 7 or more dimensions. Would close #1252.
This PR would add an array reference type into `ndarray`. This type's relationship to `ArrayBase` is analogous to the relationship between `[T]` and `Vec`. Closes #879; look there for more...
Currently, `reversed_axes` and `permuted_axes` take `mut self` and `self`, respectively. However, neither of them "consume" the array, since they are just modifying the shape and strides. Can these be changed...
While working on some code, I ran across `remove_index` and noticed that it has a bound of `S: DataOwned`, but I'm not sure why? ```rust pub fn remove_index(&mut self, axis:...
Hello! I have been trying to figure out our MSRV policy over at `ndarray`, and openblas is a major driver of some MSRV churn we're having. Some of this is...
# Summary This RFC proposes a long-term plan for restructuring the library's core types and approach for handling shapes, strides, and dimensionalities. A successful implementation of new dimension types should...
While on a hunt for tests that are unnecessarily behind feature gates (turns out we have quite a few of them), I ran across the test [`oper::product`](https://github.com/rust-ndarray/ndarray/blob/3ce0134250162967cad8a9f637dd91121733ebed/tests/oper.rs#L256) that appears to...
# 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...