Functional addition operator. Retruns a functional which is the sum of two functionals.

Namespace:  CenterSpace.NMath.Core
Assembly:  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
)

Return Value

A functional representing the sum f + g of f and g.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if f and g do not have the same x-dimension.

See Also