Click or drag to resize

NMathFunctionsSqrt(DoubleComplexVector) Method

Creates a new vector with the same size as a given vector, whose values are the result of applying the square root function to each element of the vector.

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

Parameters

v  DoubleComplexVector
A vector.

Return Value

DoubleComplexVector
A new vector.
Remarks
u[i] = NMathFunctions.Sqrt(v[i])
See Also