| FloatComplexLowerTriMatrixSubtraction(FloatComplexLowerTriMatrix, FloatComplexLowerTriMatrix) Operator |
Subtracts one lower triangular matrix from another.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public static FloatComplexLowerTriMatrix operator -(
FloatComplexLowerTriMatrix A,
FloatComplexLowerTriMatrix B
)
Public Shared Operator - (
A As FloatComplexLowerTriMatrix,
B As FloatComplexLowerTriMatrix
) As FloatComplexLowerTriMatrix
public:
static FloatComplexLowerTriMatrix^ operator -(
FloatComplexLowerTriMatrix^ A,
FloatComplexLowerTriMatrix^ B
)
static let inline (-)
A : FloatComplexLowerTriMatrix *
B : FloatComplexLowerTriMatrix : FloatComplexLowerTriMatrix
Parameters
- A FloatComplexLowerTriMatrix
- A lower triangular matrix.
- B FloatComplexLowerTriMatrix
- A lower triangular matrix.
Return Value
FloatComplexLowerTriMatrixA lower triangular matrix
C where
C[i,j] = A[i,j] - B[i,j].
Exceptions See Also