  | NMathFunctionsPow(FloatComplexVector, 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.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatComplexVector Pow(
	FloatComplexVector v,
	int x
)
Public Shared Function Pow ( 
	v As FloatComplexVector,
	x As Integer
) As FloatComplexVector
public:
static FloatComplexVector^ Pow(
	FloatComplexVector^ v, 
	int x
)
static member Pow : 
        v : FloatComplexVector * 
        x : int -> FloatComplexVector Parameters
- v  FloatComplexVector
 - A vector.
 - x  Int32
 - An exponent.
 
Return Value
FloatComplexVector
Remarksu[i] = NMathFunctions.Pow(v[i], x)
See Also