Here you can find the source of divideInPlace(double denominator, double[] target)
public static void divideInPlace(double denominator, double[] target)
//package com.java2s; //License from project: Open Source License public class Main { public static void divideInPlace(double denominator, double[] target) { for (int i = 0; i < target.length; i++) { target[i] /= denominator;//from w w w. j a v a 2 s .co m } } }