Java Matrix Print printMatrix(Object[][] matrix)

Here you can find the source of printMatrix(Object[][] matrix)

Description

print Matrix

License

Open Source License

Declaration

public static void printMatrix(Object[][] matrix) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static void printMatrix(Object[][] matrix) {
        for (Object[] wid : matrix) {
            for (Object type : wid) {
                System.out.print(type + " ");
            }/*ww w  . ja v a  2  s .  c o m*/
            System.out.println();
        }
    }
}

Related

  1. printMatrix(int[][] matrix)
  2. printMatrix(int[][] s)
  3. printMatrix(int[][] target)
  4. printMatrix(Object[][] matrix)
  5. printMatrix(Object[][] matrix)
  6. printMatrix(PrintStream out, double[][] matrix)
  7. printMatrixGeneric(boolean[][] matrix)