Modifies the contents of this vector by applying the given binary function to each element. The first parameter to the binary function is the vector element; the second parameter is the passed DoubleComplex value.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public DoubleComplexVector Transform(
	NMathFunctions..::.DoubleComplexBinaryFunction function,
	DoubleComplex x
)
Visual Basic (Declaration)
Public Function Transform ( _
	function As NMathFunctions..::.DoubleComplexBinaryFunction, _
	x As DoubleComplex _
) As DoubleComplexVector
Visual C++
public:
DoubleComplexVector^ Transform(
	NMathFunctions..::.DoubleComplexBinaryFunction^ function, 
	DoubleComplex x
)

Parameters

function
Type: CenterSpace.NMath.Core..::.NMathFunctions..::.DoubleComplexBinaryFunction
A delegate object representing a function that takes two DoubleComplex parameters and returns a DoubleComplex.
x
Type: CenterSpace.NMath.Core..::.DoubleComplex
The second parameter to the function.

Return Value

A reference to self.

Remarks

Upon exit, this[i] = function(this[i],x).

See Also