The OpenD Programming Language

Residuals

Forward Range for holding the residuals from a regression analysis.

struct Residuals (
F
U
T...
) {
static if(T.length == 1 && isForwardRange!(ElementType!(T[0])))
enum bool needDup;
static if(!(T.length == 1 && isForwardRange!(ElementType!(T[0]))))
enum bool needDup;
Unqual!U Y;
XType X;
F[] betas;
double residual;
bool _empty;
}

Meta