Searched refs:stddev (Results 1 – 3 of 3) sorted by relevance
63 public double stddev() { in stddev() method in SummaryStatistics69 return stddev() / mean(); in coeffVar()81 sb.append(stddev()); in toString()
780 default double nextGaussian(double mean, double stddev) { in nextGaussian() argument781 … if (stddev < 0.0) throw new IllegalArgumentException("standard deviation must be non-negative"); in nextGaussian()783 return mean + stddev * RandomSupport.computeNextGaussian(this); in nextGaussian()
93 public default double nextGaussian(double mean, double stddev) { throw new RuntimeException("Stub!"… in nextGaussian() argument