Represents a curve that has different expressions on different intervals within its domain.

Namespace: Extreme.Mathematics.Curves
Assembly:   Extreme.Numerics (in Extreme.Numerics)
Version: 2.1.7017.0

Syntax

Visual Basic (Declaration)
Public MustInherit Class PiecewiseCurve _
	Inherits Curve
C#
public abstract class PiecewiseCurve : Curve
Visual C++
public ref class PiecewiseCurve abstract : public Curve

Remarks

This is an abstract base class and cannot be instantiated directly. Instead, use one of the derived classes as listed in the following table:
PiecewiseConstantCurve
Represents a curve that is piecewise constant.
PiecewiseLinearCurve
Represents a piecewise linear function.
CubicSpline
Represents a natural or clamped cubic spline curve, a piecewise 3rd degree polynomial with smoothness and continuity properties.

Inheritance Hierarchy