Click or drag to resize

NMathFunctionsPow(DoubleComplexMatrix, Int32) 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.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexMatrix Pow(
	DoubleComplexMatrix A,
	int x
)

Parameters

A  DoubleComplexMatrix
A matrix.
x  Int32
An exponent.

Return Value

DoubleComplexMatrix
A new matrix.
Remarks
B[i,j] = NMathFunctions.Pow(A[i,j], x)
See Also