Esempio n. 1
0
 /// <summary>
 /// Equals - compares this Matrix with the passed in object.  In this equality
 /// Double.NaN is equal to itself, unlike in numeric equality.
 /// Note that double values can acquire error when operated upon, such that
 /// an exact comparison between two values which
 /// are logically equal may fail.
 /// </summary>
 /// <returns>
 /// bool - true if "value" is equal to "this".
 /// </returns>
 /// <param name='value'>The Matrix to compare to "this"</param>
 public bool Equals(Matrix value)
 {
     return(Matrix.Equals(this, value));
 }
Esempio n. 2
0
 public static bool Equals(Matrix matrix1,
                           Matrix matrix2)
 {
     return(matrix1.Equals(matrix2));
 }