Click or drag to resize

MatrixTDoPointwisePower(MatrixT, MatrixT) Method

Pointwise raise this matrix to an exponent matrix and store the result into the result matrix.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
protected abstract void DoPointwisePower(
	Matrix<T> exponent,
	Matrix<T> result
)

Parameters

exponent  MatrixT
The exponent matrix to raise this matrix values to.
result  MatrixT
The matrix to store the result of the pointwise power.
See Also