Click or drag to resize
sqx

MatrixProduct Method

[Matrix] Product([Matrix] B)

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

Parameters

B
Type: sqxMatrix
[Matrix]

Return Value

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