Interpolation

Fully qualified path: alexandria_numeric::interpolate::Interpolation

#![allow(unused)]
fn main() {
#[derive(Serde, Copy, Drop, PartialEq)]
pub enum Interpolation {
    Linear,
    Nearest,
    ConstantLeft,
    ConstantRight,
}
}

Variants

Linear

Fully qualified path: alexandria_numeric::interpolate::Interpolation::Linear

#![allow(unused)]
fn main() {
Linear
}

Nearest

Fully qualified path: alexandria_numeric::interpolate::Interpolation::Nearest

#![allow(unused)]
fn main() {
Nearest
}

ConstantLeft

Fully qualified path: alexandria_numeric::interpolate::Interpolation::ConstantLeft

#![allow(unused)]
fn main() {
ConstantLeft
}

ConstantRight

Fully qualified path: alexandria_numeric::interpolate::Interpolation::ConstantRight

#![allow(unused)]
fn main() {
ConstantRight
}