Re-exports§
pub use array::Array;pub use dimension::Dimension;pub use errors::ArrayError;pub use ix::Ix;pub use shape::Shape;
Modules§
Macros§
- arr
- The
arr!macro is designed to accept arrays of depth 1D, 2D and 3D and flatten them into a single-dimensional vector. It also tracks and stores the shape (dimensions) of the array, which includes the number of rows, columns, and further dimensions as needed. - ones
- The
ones!macro creates a multi-dimensional array filled with ones of the specified data type, supporting 1D, 2D, and 3D arrays. It generates a flattened vector of zeros and tracks the shape (dimensions) of the array, which includes the number of rows, columns, and further dimensions as needed. - zeros
- The
zeros!macro creates a multi-dimensional array filled with zeros of the specified data type, supporting 1D, 2D, and 3D arrays. It generates a flattened vector of zeros and tracks the shape (dimensions) of the array, which includes the number of rows, columns, and further dimensions as needed.