Displaying 2 results from an estimated 2 matches for "mc_c".
Did you mean:
ac_c
2013 Mar 04
1
robustbase adjbox segfault - memory not mapped
...x ~ y) ## gives a plot
> x <- rnorm(10000)
> y <- rep(1, 10000)
> adjbox(x ~ y) ## gives a plot
> x <- rnorm(100000)
> y <- rep(1, 100000)
> adjbox(x ~ y)
*** caught segfault ***
address 0xfffffffcc47af530, cause 'memory not mapped'
Traceback:
1: .C(mc_C, x, n, eps = eps, iter = c.iter, medc = double(1))
2: mcComp(x, doReflect, eps1 = eps1, eps2 = eps2, maxit = maxit,
trace.lev = trace.lev)
3: mc.default(x, ..., na.rm = TRUE)
4: mc(x, ..., na.rm = TRUE)
5: adjboxStats(unclass(groups[[i]]), coef = range, doReflect = doReflect)
6: adjb...
2011 Apr 21
0
C source code question (Robustbase edition)
...t64.h" */
#include <R.h>
#include <Rmath.h> /* -> <math.h> and much more */
/* Interface routines to be called via .C() : */
#include "robustbase.h"
/* ----------------- Further Declarations ------------------------------ */
/* sn0() and qn0() --- but also mc_C() in ./mc.c
* ----- ---- ------
use
pull(a,n,k): finds the k-th order statistic of an
array a[] of length n (preserving a[])
*/
/*
whimed_i(a,iw,n): finds the weighted high median of an array
a[] of length n, with positive int weights iw[]
(using auxiliary arra...