Coefficient-Form Interpolation from a Vanishing Polynomial #
Build the coefficient polynomial interpolating packed points from the node
vanishing polynomial G = ∏ᵢ (X - xᵢ) using the formula
R = ∑ᵢ yᵢ / G'(xᵢ) * G / (X - xᵢ).
Synthetic quotient by the monic linear factor X - x.
This is the quotient part of division by X - x, computed in one high-to-low
coefficient pass. When x is a root of p, it is exactly p / (X - x).
Instances For
Synthetic division by X - x agrees with generic monic division.
One coefficient-form interpolation term from a packed point and G'(xᵢ).
Instances For
Coefficient-form interpolation from packed points and an already-built node
vanishing polynomial. The supplied batch evaluator is used only for the
G' evaluations at the interpolation nodes.
Instances For
Coefficient-form interpolation from packed points using a vanishing-polynomial context and a batch-evaluation context.
Instances For
Coefficient-form interpolation evaluates to the packed values at distinct nodes.