00001 00002 void C_LinearStatistic(const double *x, const int p, 00003 const double *y, const int q, 00004 const double *weights, const int n, 00005 double *ans); 00006 void C_ExpectCovarInfluence(const double* y, const int q, 00007 const double* weights, const int n, 00008 SEXP ans); 00009 void C_ExpectCovarLinearStatistic(const double* x, const int p, 00010 const double* y, const int q, 00011 const double* weights, const int n, 00012 const SEXP expcovinf, SEXP ans); 00013 void C_PermutedLinearStatistic(const double *x, const int p, 00014 const double *y, const int q, 00015 const int n, const int nperm, 00016 const int *indx, const int *perm, 00017 double *ans); 00018 SEXP R_ExpectCovarInfluence(SEXP y, SEXP weights);