ndarray icon indicating copy to clipboard operation
ndarray copied to clipboard

Document all array creation methods in one place

Open dstansby opened this issue 3 years ago • 1 comments
trafficstars

There's some nice docs on array creation in the ndarray for numpy docs, but it would be nice if there was a separate section in the main documentation that listed and briefly described all the ndarray methods for creating new arrays, e.g. zeros, linsapce, logspace etc.

dstansby avatar Oct 07 '22 13:10 dstansby

The intended flow is that you go to ArrayBase: https://docs.rs/ndarray/0.15.6/ndarray/struct.ArrayBase.html

Under Contents there's a link called Constructor Methods for Owned Arrays

and there all the constructors are basically listed one by one.

bluss avatar Apr 29 '23 10:04 bluss