Enum ndarray::ShapeError
[−]
[src]
pub enum ShapeError {
IncompatibleShapes(Box<[Ix]>, Box<[Ix]>),
IncompatibleLayout,
DimensionTooLarge(Box<[Ix]>),
}An error that can be produced by .into_shape()
Variants
IncompatibleShapes | incompatible shapes in reshape, (from, to) | |
IncompatibleLayout | incompatible layout: not contiguous | |
DimensionTooLarge | Dimension too large (shape) |