AnyMatrixTInequality Operator
Determines whether two matrices are not equal.
Namespace: Meta.Numerics.MatricesAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
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
- A AnyMatrixT
- The first matrix.
- B AnyMatrixT
- The second matrix.
BooleanFalse if
A and
B are equal, otherwise true.