Searched refs:median (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/contrib/traceroute/
H A Dmedian.awk2 # print out the median time to each hop along a route.
11 # insertion sort the times to find the median
23 median = (time[n/2] + time[(n/2) + 1]) / 2
25 median = time[(n+1)/2]
27 print $1, median
H A Dmean.awk11 print $1, tottime/n, median
/freebsd-9.3-release/usr.sbin/timed/timed/
H A Dnetworkdelta.c40 static long median(float, float *, long *, long *, unsigned int);
44 * Compute the median of the reasonable differences. First compute
45 * the median of all authorized differences, and then compute the
46 * median of all differences that are reasonably close to the first
47 * median.
77 * compute the median of the good values
103 fprintf(fd, "median of %d values starting at %ld is about ",
105 med = median(med, &eps, &x[0], xp+1, VALID_RANGE);
108 * compute the median of all values near the good median
151 median(float a, float *eps_ptr, long *x, long *xlim, unsigned int gnuf) function
[all...]

Completed in 148 milliseconds