Click or drag to resize

NMathFunctionsPow(FloatComplexVector, Single) 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 FloatComplexVector Pow(
	FloatComplexVector v,
	float x
)

Parameters

v  FloatComplexVector
A vector.
x  Single
An exponent.

Return Value

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