pub type TensorRank2List2D<const D: usize, I, J, const M: usize, const N: usize, U = Dimensionless> = TensorList<TensorRank2List<D, I, J, M, U>, N>;Expand description
A list of lists of rank-2 tensors.
Aliased Type§
pub struct TensorRank2List2D<const D: usize, I, J, const M: usize, const N: usize, U = Dimensionless>(/* private fields */);Trait Implementations§
Source§impl<const D: usize, I, J, const W: usize, const X: usize, U> FiniteDifference for TensorRank2List2D<D, I, J, W, X, U>
impl<const D: usize, I, J, const W: usize, const X: usize, U> FiniteDifference for TensorRank2List2D<D, I, J, W, X, U>
Source§impl<const D: usize, I, J, const M: usize, const N: usize, U> From<[[[[f64; D]; D]; M]; N]> for TensorRank2List2D<D, I, J, M, N, U>
impl<const D: usize, I, J, const M: usize, const N: usize, U> From<[[[[f64; D]; D]; M]; N]> for TensorRank2List2D<D, I, J, M, N, U>
Source§impl<const D: usize, I, J, K, const W: usize, const X: usize, U, V> Mul<&TensorRank2<D, J, K, V>> for TensorRank2List2D<D, I, J, W, X, U>where
U: UnitMul<V>,
impl<const D: usize, I, J, K, const W: usize, const X: usize, U, V> Mul<&TensorRank2<D, J, K, V>> for TensorRank2List2D<D, I, J, W, X, U>where
U: UnitMul<V>,
Source§type Output = TensorList<TensorList<TensorRank2<D, I, K, <U as UnitMul<V>>::Output>, W>, X>
type Output = TensorList<TensorList<TensorRank2<D, I, K, <U as UnitMul<V>>::Output>, W>, X>
The resulting type after applying the
* operator.Source§impl<const D: usize, I, J, K, const W: usize, const X: usize, U, V> Mul<TensorRank2<D, J, K, V>> for TensorRank2List2D<D, I, J, W, X, U>where
U: UnitMul<V>,
impl<const D: usize, I, J, K, const W: usize, const X: usize, U, V> Mul<TensorRank2<D, J, K, V>> for TensorRank2List2D<D, I, J, W, X, U>where
U: UnitMul<V>,
Source§type Output = TensorList<TensorList<TensorRank2<D, I, K, <U as UnitMul<V>>::Output>, W>, X>
type Output = TensorList<TensorList<TensorRank2<D, I, K, <U as UnitMul<V>>::Output>, W>, X>
The resulting type after applying the
* operator.