SciPy

This is documentation for an old release of SciPy (version 0.17.1). Search for this page in the documentation of the latest stable release (version 1.15.1).

scipy.interpolate.PiecewisePolynomial.append

PiecewisePolynomial.append(xi, yi, order=None)[source]

Append a single point with derivatives to the PiecewisePolynomial

Parameters:

xi : float

Point to add.

yi : array_like

yi is the list of derivatives known at xi.

order : int or None, optional

A polynomial order, or instructions to use the highest possible order.