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