Trait MultipointEval

Source
pub trait MultipointEval {
    type Value;

    // Required method
    fn multipoint_eval(self, p: Vec<Self::Value>) -> Vec<Self::Value>;
}
Expand description

多項式の多点評価

Required Associated Types§

Source

type Value

多項式の係数の型

Required Methods§

Source

fn multipoint_eval(self, p: Vec<Self::Value>) -> Vec<Self::Value>

多項式の多点評価

多項式$f(x)$に値$p_0, p_1, \cdots, p_m$を代入した結果$f(p_0), f(p_1), \cdots, f(p_m)$を求める。

Implementors§