Chebyshev Series<T>.Add Method
Definition
Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Overload List
Add( | Adds another LinearCombination<T> to this instance. |
Add( | Adds two Chebyshev series. |
Add(T, LinearCombination<T>)
Adds two Chebyshev series.
public override LinearCombination<T> Add(
T factor,
LinearCombination<T> combination
)
Parameters
- factor T
- Multiplier for combination.
- combination LinearCombination<T>
- The first ChebyshevSeries.
Return Value
LinearCombination<T>A ChebyshevSeries that is the sum of the two operands.
Exceptions
Argument | combination is null. |
Invalid | combination is not a Chebyshev series. |
Argument | combination 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. |