Click or drag to resize

DoubleComplexVectorApply(FuncDoubleComplex, DoubleComplex) Method

Returns a new vector with the same size as this vector, whose values are the result of applying the given unary function to each element of this vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleComplexVector Apply(
	Func<DoubleComplex, DoubleComplex> function
)

Parameters

function  FuncDoubleComplex, DoubleComplex
A delegate object representing a function that takes a single DoubleComplex parameter and returns a DoubleComplex.

Return Value

DoubleComplexVector
A new vector with the same size as self and with u[i]=function(this[i]).
See Also