Matrix.Equals Method (Matrix, Matrix) |
Indicates whether the two provided matrices hold the same data. The type of matrix is not examined, only their dimensions
and the value of the elements at each index.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static bool Equals(
Matrix left,
Matrix right
)
Public Shared Function Equals (
left As Matrix,
right As Matrix
) As Boolean
public:
static bool Equals(
Matrix^ left,
Matrix^ right
)
static member Equals :
left : Matrix *
right : Matrix -> bool
Parameters
- left
- Type: AGI.Foundation.Coordinates.Matrix
The first matrix to compare. - right
- Type: AGI.Foundation.Coordinates.Matrix
The second matrix to compare.
Return Value
Type:
Booleantrue if the given matrices hold the same values; otherwise
false.
See Also