pub trait BaseSpaceElements<const N: usize> {
    type RealNum;
    fn base_kind(&self, axis: usize) -> BaseKind;
    fn transform_kind(&self, axis: usize) -> TransformKind;
    fn coords_axis(&self, axis: usize) -> Array1<Self::RealNum>;
    fn coords(&self) -> [Array1<Self::RealNum>; N];
}
Expand description

Coordinates and base functions

Associated Types

Real valued scalar type

Required methods

Return base key

Return transform kind

Coordinates of grid points (in physical space)

Arguments
  • axis - usize

Array of coordinates

Implementors