MatrixSubtractAssign Method  | 
 
            Sets the difference 
Matrix to equal the element-wise subtraction
            of the 
minuend by the 
subtrahend.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static void SubtractAssign(
	Matrix minuend,
	Matrix subtrahend,
	Matrix difference
)
Public Shared Sub SubtractAssign ( 
	minuend As Matrix,
	subtrahend As Matrix,
	difference As Matrix
)
public:
static void SubtractAssign(
	Matrix^ minuend, 
	Matrix^ subtrahend, 
	Matrix^ difference
)
static member SubtractAssign : 
        minuend : Matrix * 
        subtrahend : Matrix * 
        difference : Matrix -> unit 
Parameters
- minuend
 - Type: AGI.Foundation.CoordinatesMatrix
The Matrix being subtracted from. - subtrahend
 - Type: AGI.Foundation.CoordinatesMatrix
The Matrix to subtract. - difference
 - Type: AGI.Foundation.CoordinatesMatrix
The Matrix to use to store the result of the operation. 
See Also