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