Click or drag to resize

DoubleComplexMatrixTransform(FuncDoubleComplex) Method

Modifies the elements of this matrix by applying the given no-argument function to each element.

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

Parameters

function  FuncDoubleComplex
A delegate object representing a function that takes no parameters and returns a DoubleComplex.

Return Value

DoubleComplexMatrix
A reference to self.
Remarks
For example:
C#
RandGenMTwist rand = new RandGenMTwist();
DoubleComplexMatrix randMatrix = new DoubleComplexMatrix( 20, 30, rand );
...
// Get new numbers
randMatrix.Transform( new NMathFunctions.DoubleComplexFunction( rand.NextDoubleComplex );
...
See Also