Java Integer Create toIntMatrix(Number[][] matrix)

Here you can find the source of toIntMatrix(Number[][] matrix)

Description

Turns the Number matrix into one consisting of primitive ints.

License

Open Source License

Parameter

Parameter Description
matrix the matrix to convert

Return

the converted matrix

Declaration

public static int[][] toIntMatrix(Number[][] matrix) 

Method Source Code

//package com.java2s;
/*//  w w  w .j  a  v a2s  .c  o m
 *   This program is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     * Turns the Number matrix into one consisting of primitive ints.
     *
     * @param matrix   the matrix to convert
     * @return      the converted matrix
     */
    public static int[][] toIntMatrix(Number[][] matrix) {
        int[][] result;
        int i;
        int n;

        result = new int[matrix.length][];
        for (i = 0; i < matrix.length; i++) {
            result[i] = new int[matrix[i].length];
            for (n = 0; n < matrix[i].length; n++)
                result[i][n] = matrix[i][n].intValue();
        }

        return result;
    }
}

Related

  1. toIntExp(String charExp)
  2. toIntFormat(String value)
  3. toIntHeader(String value)
  4. toIntLE(byte[] value)
  5. toIntList(String valus)
  6. toIntOrNull(String string)
  7. toIntPlusOneString(Object object)
  8. toIntRound(double[] a)
  9. toInts(byte[] bytes)