ndarray icon indicating copy to clipboard operation
ndarray copied to clipboard

ndarray: an N-dimensional array with array views, multidimensional slicing, and efficient operations

Results 209 ndarray issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi thanks for the lib! After looking at doc, it seems that we do not have the things mentioned in the title yet. Can we implement it? I guess `>`...

It would be useful to have a function like https://athemathmo.github.io/rulinalg/doc/rulinalg/utils/fn.argmax.html

As far as I understand it, the current implementation of the [Dot Trait](https://docs.rs/ndarray/0.15.3/ndarray/linalg/trait.Dot.html) does not allow the user to dot Arrays containing different data types. Why is that and is...

enhancement

Hi @bluss and @jturner314. I noticed that dev has stalled a little in the past few months. In particular there are a number of useful PRs and issues that haven't...

Hello, that's me again. I apologize for my likely dump questions. I'm in a situation where I want to process an array slice by slice, where each slice is computed...

One of my function needs to create a new array with the same order as the input. I know I can use `clone()` when both arrays have the same dimension,...

enhancement
good first issue

Before 0.15.3, `stack` would return an array with C-layout when given C-layout views. But with 0.15.3, this behavior changed and now we get F-layout outputs. This demonstration program will succeed...

A-docs

I occasionally have need of a lazy linspace, which you have implemented in the private module `linspace`. It would be nice if this could be exported.

Closes #1062

breaking-change

I was wondering whether there was a best practive when writing functions that expect arrays, specifically when they are not taking ownership of the array. I couldn't see this being...