pub fn strided_array_to_ndarray<T>(arr: StridedArray<T>) -> ArrayD<T>Expand description
Convert a StridedArray result into an ndarray ArrayD<T>.
A copy is performed to materialize data into dense row-major order,
since the StridedArray from einsum may have arbitrary strides.