scipy 1.8.0 Pypi GitHub Homepage
Other Docs
AttributesMethodsNotesParametersBackRef

Attributes

x : ndarray

Breakpoints.

c : ndarray

Coefficients of the polynomials. They are reshaped to a 3-D array with the last dimension representing the trailing dimensions of the original coefficient array.

axis : int

Interpolation axis.

The polynomial between x[i] and x[i + 1] is written in the Bernstein polynomial basis:

S = sum(c[a, i] * b(a, k; x) for a in range(k+1)),

where k is the degree of the polynomial, and:

b(a, k; x) = binom(k, a) * t**a * (1 - t)**(k - a),

with t = (x - x[i]) / (x[i+1] - x[i]) and binom is the binomial coefficient.

Methods

Notes

Properties of Bernstein polynomials are well documented in the literature, see for example .

Parameters

c : ndarray, shape (k, m, ...)

Polynomial coefficients, order :None:None:`k` and m intervals

x : ndarray, shape (m+1,)

Polynomial breakpoints. Must be sorted in either increasing or decreasing order.

extrapolate : bool, optional

If bool, determines whether to extrapolate to out-of-bounds points based on first and last intervals, or to return NaNs. If 'periodic', periodic extrapolation is used. Default is True.

axis : int, optional

Interpolation axis. Default is zero.

Piecewise polynomial in terms of coefficients and breakpoints.

See Also

PPoly

piecewise polynomials in the power basis

Examples

>>> from scipy.interpolate import BPoly
... x = [0, 1]
... c = [[1], [2], [3]]
... bp = BPoly(c, x)

This creates a 2nd order polynomial

$$$$

B(x) = 1 \times b_{0, 2}(x) + 2 \times b_{1, 2}(x) + 3 \times b_{2, 2}(x) \\

= 1 \times (1-x)^2 + 2 \times 2 x (1 - x) + 3 \times x^2

See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

scipy.interpolate._interpolate.PPoly scipy.interpolate._interpolate.BPoly

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /scipy/interpolate/_interpolate.py#1369
type: <class 'type'>
Commit: