AnyMatrixTInequality Operator |
Determines whether two matrices are not equal.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static bool operator !=(
AnyMatrix<T> A,
AnyMatrix<T> B
)
Public Shared Operator <> (
A As AnyMatrix(Of T),
B As AnyMatrix(Of T)
) As Boolean
public:
static bool operator !=(
AnyMatrix<T>^ A,
AnyMatrix<T>^ B
)
static let inline (<>)
A : AnyMatrix<'T> *
B : AnyMatrix<'T> : bool
Parameters
- A
- Type: Meta.Numerics.MatricesAnyMatrixT
The first matrix. - B
- Type: Meta.Numerics.MatricesAnyMatrixT
The second matrix.
Return Value
Type:
BooleanFalse if
A and
B are equal, otherwise true.
See Also