  | NMathFunctionsLog(FloatVector) Method | 
            Creates a new vector with the same size as a given vector, whose values are the 
            result of applying the natural logarithm function to each element of the vector.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatVector Log(
	FloatVector v
)
Public Shared Function Log ( 
	v As FloatVector
) As FloatVector
public:
static FloatVector^ Log(
	FloatVector^ v
)
static member Log : 
        v : FloatVector -> FloatVector Parameters
- v  FloatVector
 - A vector.
 
Return Value
FloatVectorA new vector.
Remarksu[i] = System.Math.Log(v[i])
See Also