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