  | NMathFunctionsPow(FloatMatrix, Single) Method | 
            Creates a new matrix with the same dimensions as a given matrix, whose values 
            are the result of applying the power function to each element of the matrix 
            with the given exponent.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatMatrix Pow(
	FloatMatrix A,
	float x
)
Public Shared Function Pow ( 
	A As FloatMatrix,
	x As Single
) As FloatMatrix
public:
static FloatMatrix^ Pow(
	FloatMatrix^ A, 
	float x
)
static member Pow : 
        A : FloatMatrix * 
        x : float32 -> FloatMatrix Parameters
- A  FloatMatrix
 - A matrix.
 - x  Single
 - An exponent.
 
Return Value
FloatMatrixA new matrix.
Remarksu[i] = System.Math.Pow(A[i,j], x)
See Also