Click or drag to resize
sqx

MatrixHadamardProduct Method

[Matrix] HadamardProduct([Matrix] B)

Namespace:  sqx
Assembly:  SQX (in SQX.dll) Version: 1.0.2.6 (1.0.2.6)
Syntax
C#
public Matrix HadamardProduct(
	Matrix B
)

Parameters

B
Type: sqxMatrix
[Matrix]

Return Value

Type: Matrix
[Matrix]
Remarks
Matrix Hadamard Product.
Examples
SQL
declare @A sqx.Matrix = '2,3,1;0,8,-2'
declare @B sqx.Matrix = '3,1,4;7,9,5'
print @A.HadamardProduct(@B).ToString()
/*
6,3,4;
0,72,-10*/
See Also