Expand description
Sovereign array types — Vec-backed replacements for ndarray Array1/Array2.
These types provide the same API surface as ndarray but use plain Vec
Structs§
- Array1
- 1-D array backed by
Vec<f32>. Drop-in replacement forndarray::Array1<f32>. - Array2
- 2-D array backed by
Vec<T>in row-major order. Drop-in replacement forndarray::Array2<T>. - Array
View1 - Read-only 1-D view (returned by
Array2::row) - Array
View Mut1 - Mutable 1-D view (returned by
axis_iter_mut) - Axis
- Axis for Array2 operations (replaces
ndarray::Axis) - Axis
Iter
Functions§
- arr1
- Free function: create Array1 from slice (replaces
ndarray::arr1)