Java Array Value Add arrayAdd(final Double[] first, final Double[] second)

Here you can find the source of arrayAdd(final Double[] first, final Double[] second)

Description

Sums the elements of the arrays.

License

Apache License

Parameter

Parameter Description
first First array: a
second Second array: b

Return

new array with elements e: e_i = a_i + b_i

Declaration

public static Double[] arrayAdd(final Double[] first, final Double[] second) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    /**//from ww  w  .j  av  a 2s.  c  o  m
     * Sums the elements of the arrays.
     *
     * @param first  First array: a
     * @param second Second array: b
     * @return new array with elements e: e_i = a_i + b_i
     */
    public static Double[] arrayAdd(final Double[] first, final Double[] second) {
        final Double[] toret = new Double[first.length];
        for (int i = 0; i < first.length; i++) {
            toret[i] = first[i] + second[i];
        }
        return toret;
    }
}

Related

  1. arrayAdd(double[] d1, double d2[])
  2. ArrayAdd(float[] a, int[] b)
  3. ArrayScale(float[] a, float b)