Extrapolation#

This module contains the extrapolators used to evaluate points outside the domain range of FDataBasis or FDataGrid. See Extrapolation Example for detailed explanation.

Extrapolation Methods#

The following classes are used to define common methods of extrapolation.

skfda.representation.extrapolation.BoundaryExtrapolation()

Extend the domain range using the boundary values.

skfda.representation.extrapolation.ExceptionExtrapolation()

Raise an exception.

skfda.representation.extrapolation.FillExtrapolation(...)

Values outside the domain range will be filled with a fixed value.

skfda.representation.extrapolation.PeriodicExtrapolation()

Extend the domain range periodically.

Custom Extrapolation#

Custom extrapolators could be done subclassing Evaluator.

skfda.representation.evaluator.Evaluator()

Structure of an evaluator.