00001
00002
00003 #ifndef REGRESSION_H
00004 #define REGRESSION_H
00005
00006 #include "weight.h"
00007
00008 static const char *modelitems[] = {I18N_NOOP("linear"),I18N_NOOP("quadratic"),I18N_NOOP("cubic"),
00009 I18N_NOOP("4-th order"),I18N_NOOP("5-th order"),I18N_NOOP("6-th order"),I18N_NOOP("7-th order"),
00010 I18N_NOOP("8-th order"),I18N_NOOP("9-th order"),I18N_NOOP("10-th order"),0};
00011
00012 enum Model {MLINEAR,MQUADRATIC,MCUBIC,M4ORDER,M5ORDER,M6ORDER,M7ORDER,M8ORDER,M9ORDER,M10ORDER};
00013
00014 #endif // REGRESSION_H