Modifies the elements of this vector by applying the given unary function to
each element.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public FloatComplexVector Transform( NMathFunctions..::.FloatComplexUnaryFunction function ) |
| Visual Basic (Declaration) |
|---|
Public Function Transform ( _ function As NMathFunctions..::.FloatComplexUnaryFunction _ ) As FloatComplexVector |
| Visual C++ |
|---|
public: FloatComplexVector^ Transform( NMathFunctions..::.FloatComplexUnaryFunction^ function ) |
Parameters
- function
- Type: CenterSpace.NMath.Core..::.NMathFunctions..::.FloatComplexUnaryFunction
A delegate object representing a function that takes a single FloatComplex parameter and returns a FloatComplex.
Return Value
A reference to self.
Remarks
Upon exit, this[i] = function(this[i]).