Functional addition operator. Retruns a functional which is the sum of two
functionals.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static DoubleFunctional operator +( DoubleFunctional f, DoubleFunctional g ) |
| Visual Basic (Declaration) |
|---|
Public Shared Operator + ( _ f As DoubleFunctional, _ g As DoubleFunctional _ ) As DoubleFunctional |
| Visual C++ |
|---|
public: static DoubleFunctional^ operator +( DoubleFunctional^ f, DoubleFunctional^ g ) |
Parameters
- f
- Type: CenterSpace.NMath.Core..::.DoubleFunctional
A functional.
- g
- Type: CenterSpace.NMath.Core..::.DoubleFunctional
A functional.
Return Value
A functional representing the sum f + g of f and g.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MismatchedSizeException | Thrown if f and g do not have the same x-dimension. |