Here you can find the source of toDoubleArray(Collection
public static double[] toDoubleArray(Collection<Double> ds)
//package com.java2s; //License from project: BSD License import java.util.*; public class Main { public static double[] toDoubleArray(Collection<Double> ds) { double[] out = new double[ds.size()]; int index = 0; for (Double d : ds) out[index++] = d;// w w w. ja va 2 s .c om return out; } }