7 #define UNUSED __attribute__((unused)) 13 int durbin(
double *thing,
int n,
double *thing2,
double *thing3,
double *outSomething);
14 void afromk(
double *in,
double *out,
int n);
15 int kfroma(
double *in,
double *out,
int n);
16 void rfroma(
double *dataRow,
int n,
double *thing3);
17 double model_dist(
double *first,
double *second,
int n);
18 void acmat(
short *in,
int n,
int m,
double **mat);
19 void acvect(
short *in,
int n,
int m,
double *vec);
20 int lud(
double **
a,
int n,
int *indx,
int *d);
21 void lubksb(
double **
a,
int n,
int *indx,
double *b);
24 void split(
double **table,
double *delta,
int order,
int npredictors,
double scale);
25 void refine(
double **table,
int order,
int npredictors,
double **
data,
int dataSize,
int refineIters,
double unused);
void acvect(short *in, int n, int m, double *vec)
Definition: estimate.c:212
int kfroma(double *in, double *out, int n)
Definition: estimate.c:79
void afromk(double *in, double *out, int n)
Definition: estimate.c:65
int durbin(double *thing, int n, double *thing2, double *thing3, double *outSomething)
Definition: estimate.c:28
data
Definition: seq_decoder.py:292
at end of structure union member declaration In standard C each member declaration must be terminated by a
Definition: err.english.cc:690
static UNUSED u32 unused
Definition: osContStartReadData.c:6
def m
Definition: first-diff.py:153
void lubksb(double **a, int n, int *indx, double *b)
Solves the set of n linear equations Ax = b, using LU decomposition back-substitution.
Definition: estimate.c:323
int print_entry(FILE *out, double *row, int order)
Definition: print.c:5
void acmat(short *in, int n, int m, double **mat)
Definition: estimate.c:195
int lud(double **a, int n, int *indx, int *d)
Replaces a real n-by-n matrix "a" with the LU decomposition of a row-wise permutation of itself...
Definition: estimate.c:245
double model_dist(double *first, double *second, int n)
Definition: estimate.c:163
void refine(double **table, int order, int npredictors, double **data, int dataSize, int refineIters, double unused)
void split(double **table, double *delta, int order, int npredictors, double scale)
Definition: codebook.c:4
void rfroma(double *dataRow, int n, double *thing3)
Definition: estimate.c:121