Here you can find the source of toDoubleMatrix(Number[][] matrix)
Parameter | Description |
---|---|
matrix | the matrix to convert |
public static double[][] toDoubleMatrix(Number[][] matrix)
//package com.java2s; /*//from w ww . jav a 2 s .c om * 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 doubles. * * @param matrix the matrix to convert * @return the converted matrix */ public static double[][] toDoubleMatrix(Number[][] matrix) { double[][] result; int i; int n; result = new double[matrix.length][]; for (i = 0; i < matrix.length; i++) { result[i] = new double[matrix[i].length]; for (n = 0; n < matrix[i].length; n++) result[i][n] = matrix[i][n].doubleValue(); } return result; } }