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 DFGenericColumn Transform( NMathFunctions..::.ObjectUnaryFunction function ) |
| Visual Basic (Declaration) |
|---|
Public Function Transform ( _ function As NMathFunctions..::.ObjectUnaryFunction _ ) As DFGenericColumn |
| Visual C++ |
|---|
public: DFGenericColumn^ Transform( NMathFunctions..::.ObjectUnaryFunction^ function ) |
Parameters
- function
- Type: CenterSpace.NMath.Core..::.NMathFunctions..::.ObjectUnaryFunction
A delegate object representing a function that takes a single object parameter and returns an object.
Return Value
A reference to self.
Remarks
Upon exit, this[i] = function( this[i] ).