Click or drag to resize

NMathFunctionsPow(DoubleMatrix, Double) 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 DoubleMatrix Pow(
	DoubleMatrix A,
	double x
)

Parameters

A  DoubleMatrix
A matrix.
x  Double
An exponent.

Return Value

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