Nil Goyette
Nil Goyette
Closing this issue because https://github.com/rust-ndarray/ndarray/issues/1272 is more complete.
Closing issue because - It already has an answer - It doesn't belong in ndarray. It's already in [ndarray-ndimage](https://github.com/imeka/ndarray-ndimage)
I never thought of printing an iterator before! Anyway, as per the official documentation: > [fmt::Debug](https://doc.rust-lang.org/std/fmt/trait.Debug.html) implementations should be implemented for all public types. So, yeah, I guess we should...
Yes, probably. Just clone the project and test, you will see.
Since there's already a `ndarray-examples` crate, I would say that yes, imo we should move it. And probably add a link in the readme somewhere.
This has already been discussed in this [issue](https://github.com/rust-ndarray/ndarray/issues/445). You probably already know but `general_mat_mul` is "hidden" in [linalg module](https://docs.rs/ndarray/latest/ndarray/linalg/index.html). However this only offers `gemm`, which is not what you're asking...
Afaik, nobody did. And I don't think anyone will do it in the near future. ndarray hasn't evolved much in the last 4-5 years because of a lack of maintainers.
This is something that @bluss might be interested in.
Update the description with one output example. Also, you left several lines of commented code.
I see 2 problems: - Please also add the output of a 2D arrays so we know how it will be printed - `Iter { inner: Slice(Iter([...])) } }` is...