pub enum InterpolationError {
UnsortedDataset,
DatasetMismatch,
NotEnoughPoints,
ZGridMismatch,
BLASTridiagError {
which_interp: String,
source: LinalgError,
},
DomainError(DomainError),
}
Expand description
The error type for Interpolator creation and data checking.
Variants§
UnsortedDataset
x points dataset is not sorted.
DatasetMismatch
x and y datasets have different length.
NotEnoughPoints
Supplied array size is less than the interpolation type’s minimum size.
ZGridMismatch
Suppled z-grid dataset must be 1D with length of xsize*ysize
.
BLASTridiagError
BLAS error solving Tridiagonal linear system.
DomainError(DomainError)
Supplied value is outside the range of the supplied xdata or ydata.
Trait Implementations§
Source§impl Debug for InterpolationError
impl Debug for InterpolationError
Source§impl Display for InterpolationError
impl Display for InterpolationError
Source§impl Error for InterpolationError
impl Error for InterpolationError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<DomainError> for InterpolationError
impl From<DomainError> for InterpolationError
Source§fn from(source: DomainError) -> Self
fn from(source: DomainError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InterpolationError
impl RefUnwindSafe for InterpolationError
impl Send for InterpolationError
impl Sync for InterpolationError
impl Unpin for InterpolationError
impl UnwindSafe for InterpolationError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more