Click or drag to resize

DoubleComplexMatrixTransform(FuncDoubleComplex, DoubleComplex) Method

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleComplexMatrix Transform(
	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

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