Skip to main content

TensorRank1List2D

Type Alias TensorRank1List2D 

Source
pub type TensorRank1List2D<const D: usize, I, const M: usize, const N: usize, U = Dimensionless> = TensorList<TensorRank1List<D, I, M, U>, N>;
Expand description

A list of lists of rank-1 tensors.

Aliased Type§

pub struct TensorRank1List2D<const D: usize, I, const M: usize, const N: usize, U = Dimensionless>(/* private fields */);

Trait Implementations§

Source§

impl<const D: usize, I, const M: usize, const N: usize, U> From<[[[f64; D]; M]; N]> for TensorRank1List2D<D, I, M, N, U>

Source§

fn from(array: [[[TensorRank0; D]; M]; N]) -> Self

Converts to this type from the input type.