| FloatComplexLowerTriMatrixNegate Method |
Negation operator.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public static FloatComplexLowerTriMatrix Negate(
FloatComplexLowerTriMatrix A
)
Public Shared Function Negate (
A As FloatComplexLowerTriMatrix
) As FloatComplexLowerTriMatrix
public:
static FloatComplexLowerTriMatrix^ Negate(
FloatComplexLowerTriMatrix^ A
)
static member Negate :
A : FloatComplexLowerTriMatrix -> FloatComplexLowerTriMatrix
Parameters
- A FloatComplexLowerTriMatrix
- A lower triangular matrix.
Return Value
FloatComplexLowerTriMatrixA new lower triangular matrix
B such that
B[i,j] = -A[i,j].
See Also