Click or drag to resize

DoubleFunctionalAddition(DoubleFunctional, DoubleFunctional) Operator

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleFunctional operator +(
	DoubleFunctional f,
	DoubleFunctional g
)

Parameters

f  DoubleFunctional
A functional.
g  DoubleFunctional
A functional.

Return Value

DoubleFunctional
A functional representing the sum f + g of f and g.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if f and g do not have the same x-dimension.
See Also