Rev 33359 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* Original (by permission) from* MASS/MASS.c by W. N. Venables and B. D. Ripley Copyright (C) 1994-9* Find maximum column: designed for probabilities.* Uses reservoir sampling to break ties at random.*/#include <R_ext/Arith.h> /* NA handling */#include <Rmath.h> /* fmax2 */#include <R_ext/Random.h> /* ..RNGstate */#include <R_ext/Applic.h> /* NA handling */#define RELTOL 1e-5void R_max_col(double *matrix, int *nr, int *nc, int *maxes, int *ties_meth){int r, c, m, n_r = *nr;double a, b, large;Rboolean isna,used_random=FALSE,do_rand = *ties_meth == 1;for (r = 0; r < n_r; r++) {/* first check row for any NAs and find the largest abs(entry) */large = 0.0;isna = FALSE;for (c = 0; c < *nc; c++) {a = matrix[r + c * n_r];if (ISNAN(a)) { isna = TRUE; break; }if (do_rand) large = fmax2(large, fabs(a));}if (isna) { maxes[r] = NA_INTEGER; continue; }m = 0;a = matrix[r];if (do_rand) {double tol = RELTOL * large;int ntie = 1;for (c = 1; c < *nc; c++) {b = matrix[r + c * n_r];if (b >= a + tol) {a = b; m = c;ntie = 1;} else if (b >= a - tol) { /* b ~= current max. a */ntie++;if (!used_random) { GetRNGstate(); used_random = TRUE; }if (ntie * unif_rand() < 1.) m = c;}}} else {if(*ties_meth == 2) /* return the *first* max if there are ties */for (c = 1; c < *nc; c++) {b = matrix[r + c * n_r];if (a < b) {a = b; m = c;}}else if(*ties_meth == 3) /* return the *last* max ... */for (c = 1; c < *nc; c++) {b = matrix[r + c * n_r];if (a <= b) {a = b; m = c;}}else error("invalid 'ties_meth' {should not happen}");}maxes[r] = m + 1;}if(used_random) PutRNGstate();}