ChebyshevSeries.Add Method

Definition

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

Overload List

Add(LinearCombination) Adds another LinearCombination to this instance.
Add(Double, LinearCombination) Adds two Chebyshev series.

Add(Double, LinearCombination)

Adds two Chebyshev series.
C#
public override LinearCombination Add(
	double factor,
	LinearCombination combination
)

Parameters

factor  Double
Multiplier for combination.
combination  LinearCombination
The first ChebyshevSeries.

Return Value

LinearCombination
A ChebyshevSeries that is the sum of the two operands.

Exceptions

ArgumentNullExceptioncombination is null.
ArgumentExceptioncombination is not an instance of ChebyshevSeries.

-or-

The Chebyshev series represented by this instance and combination are defined over different intervals.

-or-

The Degree of combination is greater than the maximum degree of this instance.

See Also