bundles / scipy 1.17.1 / scipy / interpolate / _rbfinterp_xp / _build_system
function
scipy.interpolate._rbfinterp_xp:_build_system
Signature
def _build_system ( y , d , smoothing , kernel , epsilon , powers , xp ) Summary
Build the system used to solve for the RBF interpolant coefficients.
Parameters
y: (P, N) float ndarrayData point coordinates.
d: (P, S) float ndarrayData values at
y.smoothing: (P,) float ndarraySmoothing parameter for each data point.
kernel: strName of the RBF.
epsilon: floatShape parameter.
powers: (R, N) int ndarrayThe exponents for each monomial in the polynomial.
Returns
lhs: (P + R, P + R) float ndarrayLeft-hand side matrix.
rhs: (P + R, S) float ndarrayRight-hand side matrix.
shift: (N,) float ndarrayDomain shift used to create the polynomial matrix.
scale: (N,) float ndarrayDomain scaling used to create the polynomial matrix.
Aliases
-
scipy.interpolate._rbfinterp_xp._build_system