Exemple #1
0
 /** {@inheritDoc} */
 public boolean equals(final Matrix matrix, final double tolerance) {
   return GeneralMatrix.epsilonEquals(this, matrix, tolerance);
 }
Exemple #2
0
 /**
  * Returns a string representation of this matrix. The returned string is implementation
  * dependent. It is usually provided for debugging purposes only.
  */
 @Override
 public String toString() {
   return GeneralMatrix.toString(this);
 }
Exemple #3
0
 /** {@inheritDoc} */
 public final boolean isIdentity(double tolerance) {
   return GeneralMatrix.isIdentity(this, tolerance);
 }