Java Matrix matrixEquals(int[][] firstMatrix, int[][] secondMatrix)

Here you can find the source of matrixEquals(int[][] firstMatrix, int[][] secondMatrix)

Description

matrix Equals

License

Apache License

Declaration

public static boolean matrixEquals(int[][] firstMatrix, int[][] secondMatrix) 

Method Source Code

//package com.java2s;
/**Copyright 2013 The Cybercat project
 * //from w  ww. ja v  a2s. c  o  m
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 *     
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    public static boolean matrixEquals(int[][] firstMatrix, int[][] secondMatrix) {
        for (int i = 0; i < firstMatrix.length; i++)
            for (int j = 0; j < firstMatrix[0].length; j++)
                if (firstMatrix[i][j] != secondMatrix[i][j])
                    return false;
        return true;
    }
}

Related

  1. matrixATrans_x_matrixB(double[][] matA, double[][] matB)
  2. matrixConcatLR(double[][] LMatrix, double[][] RMatrix)
  3. matrixConcatUL(double[][] UMatrix, double[][] LMatrix)
  4. matrixDestructAdd(double[][] m1, double[][] m2)
  5. matrixDeterminant(final float[] m, final int m_offset)
  6. matrixIsWellformed(int numLabels, int[][] matrix)
  7. matrixKLDivergence(double m1[][], double m2[][])
  8. matrixModule(double[][] matrix, int module)
  9. matrixTimesVector(double[][] matrix, double[] vector)