Java Double Array Create toDoubleArray(int[] ints)

Here you can find the source of toDoubleArray(int[] ints)

Description

Returns an array with the same shape and the contents converted to doubles.

License

Open Source License

Parameter

Parameter Description
ints an array of ints.

Declaration

public static double[] toDoubleArray(int[] ints) 

Method Source Code

//package com.java2s;
/* ---------------------------------------------------------------------
 * Numenta Platform for Intelligent Computing (NuPIC)
 * Copyright (C) 2014, Numenta, Inc.  Unless you have an agreement
 * with Numenta, Inc., for a separate license for this software code, the
 * following terms and conditions apply:
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero Public License version 3 as
 * published by the Free Software Foundation.
 *
 * 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 Affero Public License for more details.
 *
 * You should have received a copy of the GNU Affero Public License
 * along with this program.  If not, see http://www.gnu.org/licenses.
 *
 * http://numenta.org/licenses///from   w  ww. j a  v a 2s .  c o  m
 * ---------------------------------------------------------------------
 */

public class Main {
    /**
     * Returns an array with the same shape and the contents
     * converted to doubles.
     *
     * @param ints an array of ints.
     * @return
     */
    public static double[] toDoubleArray(int[] ints) {
        double[] retVal = new double[ints.length];
        for (int i = 0; i < ints.length; i++) {
            retVal[i] = ints[i];
        }
        return retVal;
    }
}

Related

  1. toDoubleArray(Double[] data)
  2. toDoubleArray(final byte[] array)
  3. toDoubleArray(final long[] array)
  4. toDoubleArray(final Object[] array)
  5. toDoubleArray(int... intArray)
  6. toDoubleArray(Number[] array)
  7. toDoubleArray(String array)
  8. toDoubleArray(String str, String separator)
  9. toDoubleArray(String value)