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: 5.1.0.0

Syntax

C#
public DoubleComplexMatrix Transform(
	NMathFunctions..::.DoubleComplexUnaryFunction function
)
Visual Basic (Declaration)
Public Function Transform ( _
	function As NMathFunctions..::.DoubleComplexUnaryFunction _
) As DoubleComplexMatrix
Visual C++
public:
DoubleComplexMatrix^ Transform(
	NMathFunctions..::.DoubleComplexUnaryFunction^ function
)

Parameters

function
Type: CenterSpace.NMath.Core..::.NMathFunctions..::.DoubleComplexUnaryFunction
A delegate object representing a function that takes a single DoubleComplex parameter and returns a DoubleComplex.

Return Value

A reference to self.

Remarks

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

See Also