I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com

Regression

Discrete

Approximates a discrete function using least squares polynomial fitting.
double Discrete_once (int N, double *x, double *y, int degree, double a)
Icon

Forsythe

Approximates an arbitrary function using Forsythe orthogonal polynomials.
double Forsythe_once (int n, double *x, double *y, int degree, double a)
Icon

Linear

Calculates the linear regression parameters and evaluates the regression line at arbitrary abscissas
double Linear_once (int n, double *x, double *y, double a)
Icon

Logistic

Evaluates the logistic regression curve built from a given set of points.
double Logistic_once (int n, double *x, double *y, double a)
Icon

Orthogonal

Approximates an arbitrary function using orthogonal polynomials.
double Orthogonal_once (int n, double *x, double *y, int degree, double a)
Icon

Parabolic

Approximates an arbitrary function using parabolic least squares fitting.
double Parabolic_once (int n, double *x, double *y, double a)
Icon

Stiefel

Approximates a given function using the Stiefel-Remes method.
double Stiefel_once (int n, double *x, double *y, int degree, double a)
IconIcon

Univariate Regression

univariate regression, polynomial regression, orthogonal polynomials, nonlinear
IconIconIconIconIcon