Java Number Minus minus(double[][] x, double[][] y, double[][] r)

Here you can find the source of minus(double[][] x, double[][] y, double[][] r)

Description

minus

License

Apache License

Declaration

public static void minus(double[][] x, double[][] y, double[][] r) 

Method Source Code

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

public class Main {
    public static void minus(double[][] x, double[][] y, double[][] r) {
        for (int i = 0; i < x.length; i++) {
            for (int j = 0; j < x[i].length; j++) {
                r[i][j] = x[i][j] - y[i][j];
            }/*from   ww w  .j a  va  2 s.co m*/
        }
    }
}

Related

  1. minus(boolean a, boolean b)
  2. minus(double a[], double b)
  3. minus(double[] a)
  4. minus(double[] p, double[] q)
  5. minus(int flags, int set)
  6. minus(Integer a, Integer b)
  7. minus(Number n)
  8. minus(Number n)