  | NMathFunctionsLog(FloatComplexVector) 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 FloatComplexVector Log(
	FloatComplexVector v
)
Public Shared Function Log ( 
	v As FloatComplexVector
) As FloatComplexVector
public:
static FloatComplexVector^ Log(
	FloatComplexVector^ v
)
static member Log : 
        v : FloatComplexVector -> FloatComplexVector Parameters
- v  FloatComplexVector
 - A vector.
 
Return Value
FloatComplexVectorA new vector.
Remarksu[i] = NMathFunctions.Log(v[i])
See Also