Subtracts one matrix from another.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static void Subtract( FloatComplexMatrix A, FloatComplexMatrix B, FloatComplexMatrix C ) |
| Visual Basic (Declaration) |
|---|
Public Shared Sub Subtract ( _ A As FloatComplexMatrix, _ B As FloatComplexMatrix, _ C As FloatComplexMatrix _ ) |
| Visual C++ |
|---|
public: static void Subtract( FloatComplexMatrix^ A, FloatComplexMatrix^ B, FloatComplexMatrix^ C ) |
Parameters
- A
- Type: CenterSpace.NMath.Core..::.FloatComplexMatrix
A matrix.
- B
- Type: CenterSpace.NMath.Core..::.FloatComplexMatrix
A matrix.
- C
- Type: CenterSpace.NMath.Core..::.FloatComplexMatrix
A matrix whose contents are overwritten with the difference: C[i,j] = A[i,j] - B[i,j]
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MismatchedSizeException | Thrown if A, B, and C do not all have the same dimensions. |