Click or drag to resize

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.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatMatrix Pow(
	FloatMatrix A,
	float x
)

Parameters

A  FloatMatrix
A matrix.
x  Single
An exponent.

Return Value

FloatMatrix
A new matrix.
Remarks
u[i] = System.Math.Pow(A[i,j], x)
See Also