Java mean mean(double[][] image)

Here you can find the source of mean(double[][] image)

Description

mean

License

Apache License

Declaration

@Deprecated
    public static double mean(double[][] image) 

Method Source Code

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

public class Main {
    @Deprecated
    public static double mean(double[][] image) {
        return 0;
    }/*from w ww  .j  a v  a2  s .  co m*/
}

Related

  1. mean(double[] series)
  2. mean(double[] v)
  3. mean(double[] values)
  4. mean(double[] vector)
  5. mean(double[] x, boolean[] used)
  6. mean(double[][] input, int column)
  7. mean(double[][] matrix)
  8. mean(double[][] o)
  9. mean(final double[] a)