Click or drag to resize

NMathFunctionsLog10(DoubleVector) Method

Creates a new vector with the same size as a given vector, whose values are the result of applying the base-10 logarith function to each element of the vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleVector Log10(
	DoubleVector v
)

Parameters

v  DoubleVector
A vector.

Return Value

DoubleVector
A new vector.
Remarks
u[i] = System.Math.Log10(v[i])
See Also