Click or drag to resize
sqx

MatrixMinus Method

[Matrix] Minus()

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

Return Value

Type: Matrix
[Matrix]
Examples
SQL
declare @A sqx.Matrix = '1,-2;-3,4;5,-6'
print @A.ToString()
print '******'
print @A.Minus().ToString()
/*
1,-2;
-3,4;
5,-6
******
-1,2;
3,-4;
-5,6*/
See Also