Java String Sub String substract(double[] a, double[] b)

Here you can find the source of substract(double[] a, double[] b)

Description

Subtract the second array from the first one and returns the result.

License

Open Source License

Parameter

Parameter Description
a the first array
b the second array

Return

the subtraction of the first minus the second array

Declaration

public static double[] substract(double[] a, double[] b) 

Method Source Code

//package com.java2s;
/**/*from  w w w.  ja  v  a2 s.  c  om*/
 * This file is part of the Java Machine Learning Library
 *
 * The Java Machine Learning Library 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 2 of the License, or
 * (at your option) any later version.
 *
 * The Java Machine Learning Library 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 the Java Machine Learning Library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Copyright (c) 2006-2009, Thomas Abeel
 *
 * Project: http://java-ml.sourceforge.net/
 *
 */

public class Main {
    /**
     * Subtract the second array from the first one and returns the result.
     *
     * @param a the first array
     * @param b the second array
     * @return the subtraction of the first minus the second array
     */
    public static double[] substract(double[] a, double[] b) {
        double[] out = new double[a.length];

        for (int i = 0; i < a.length; i++) {
            out[i] = a[i] - b[i];
        }

        return out;
    }
}

Related

  1. subStr(String str, int maxLen)
  2. substr(String str, int startIndex, int length)
  3. substr(String substr1, String substr2)
  4. substr(String what, int begin, int end)
  5. substr(StringBuffer buf)
  6. substract(double[] a, double[] b)
  7. substract(int[] array1, int[] array2)
  8. substract(Number n1, Number n2)
  9. substraction2(double[] a, double[] b)