 | DoubleVectorApply(FuncDouble, Double) Method |
Returns a new vector with the same size as this vector, whose values are
the result of applying the given unary function to each element of this vector.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DoubleVector Apply(
Func<double, double> function
)
Public Function Apply (
function As Func(Of Double, Double)
) As DoubleVector
public:
DoubleVector^ Apply(
Func<double, double>^ function
)
member Apply :
function : Func<float, float> -> DoubleVector
Parameters
- function FuncDouble, Double
-
A delegate object representing a function that
takes a single double parameter and returns a double.
Return Value
DoubleVector
A new vector with the same size as self and with
u[i]=function(this[i]).
See Also