Click or drag to resize

NMathFunctionsPow(DoubleComplexVector, Int32) Method

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexVector Pow(
	DoubleComplexVector v,
	int x
)

Parameters

v  DoubleComplexVector
A vector.
x  Int32
An exponent.

Return Value

DoubleComplexVector
Remarks
u[i] = NMathFunctions.Pow(v[i], x)
See Also