pub trait BaseSpaceSize<const N: usize> {
    fn shape_physical(&self) -> [usize; N];
    fn shape_spectral(&self) -> [usize; N];
    fn shape_spectral_ortho(&self) -> [usize; N];
    fn ndarray_from_shape<T: Clone + Zero>(
        &self,
        shape: [usize; N]
    ) -> Array<T, Dim<[usize; N]>>; }
Expand description

Dimensions

Required methods

Shape of physical space

Shape of spectral space

Shape of spectral space (orthogonal bases)

Return array from shape

Implementors