Click or drag to resize

MatrixHadamardProduct Method (Matrix, Matrix, Matrix)

Computes the Hadamard product (also known as pointwise product or Shur product) of two matrices.

Namespace:  FinMath.LinearAlgebra
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public static void HadamardProduct(
	Matrix left,
	Matrix right,
	Matrix result
)

Parameters

left
Type: FinMath.LinearAlgebraMatrix
Left matrix to multiply.
right
Type: FinMath.LinearAlgebraMatrix
Right matrix to multiply.
result
Type: FinMath.LinearAlgebraMatrix
Matrix to store the Haramard product of matrices left and right.
See Also