|
a |
|
b/partyMod/src/LinearStatistic.h |
|
|
1 |
|
|
|
2 |
void C_LinearStatistic(const double *x, const int p, |
|
|
3 |
const double *y, const int q, |
|
|
4 |
const double *weights, const int n, |
|
|
5 |
double *ans); |
|
|
6 |
void C_ExpectCovarInfluence(const double* y, const int q, |
|
|
7 |
const double* weights, const int n, |
|
|
8 |
SEXP ans); |
|
|
9 |
void C_ExpectCovarLinearStatistic(const double* x, const int p, |
|
|
10 |
const double* y, const int q, |
|
|
11 |
const double* weights, const int n, |
|
|
12 |
const SEXP expcovinf, SEXP ans); |
|
|
13 |
void C_PermutedLinearStatistic(const double *x, const int p, |
|
|
14 |
const double *y, const int q, |
|
|
15 |
const int n, const int nperm, |
|
|
16 |
const int *indx, const int *perm, |
|
|
17 |
double *ans); |
|
|
18 |
SEXP R_ExpectCovarInfluence(SEXP y, SEXP weights); |