Click or drag to resize

FloatComplexVectorTransform(FuncFloatComplex, FloatComplex) Method

Modifies the elements of this vector by applying the given unary function to each element.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatComplexVector Transform(
	Func<FloatComplex, FloatComplex> function
)

Parameters

function  FuncFloatComplex, FloatComplex
A delegate object representing a function that takes a single FloatComplex parameter and returns a FloatComplex.

Return Value

FloatComplexVector
A reference to self.
Remarks
Upon exit, this[i] = function(this[i]).
See Also