TRegressionModel Enumeration

Source: RegModels.cs · Assembly: Dew.Stats

public enum TRegressionModel

Defines different linear models.

Values

NameDescription
rmExpSimple exponential function Y = B[0]*Exp(B[1]*X).
rmFracRational function : Y = (B[0] + B[1].x + ... + B[n]x^n)/(1 + B[n+1].x + B[n+2].x^2 + ... B[n+d]*x^d)
rmLineLinear function Y = B[0]+B[1]*X.
rmLnNatural logarithm function : y = B[0] + B[1]*Ln(X).
rmLogisticLogistic function : Y = B[0] + (B[1]-B[0])/(1+Exp(-B[2]*x + B[3]))
rmMulLiMultiple linear function Y = B[0] + B[1]*X1 + B[2]*X2 + ...
rmPolyPolynomial function.
rmPowerPower function Y = (B[0]*X)^B[1].