Click or drag to resize
sqx

MatrixAddition Method

[Matrix] Addition([Matrix] B)

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

Parameters

B
Type: sqxMatrix
[Matrix]

Return Value

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