liba 0.1.15
An algorithm library based on C/C++
 
Loading...
Searching...
No Matches
regress_simple.h File Reference

simple linear regression More...

#include "a.h"
Include dependency graph for regress_simple.h:

Go to the source code of this file.

Data Structures

struct  a_regress_simple
 instance structure for simple linear regression More...
 

Typedefs

typedef struct a_regress_simple a_regress_simple
 
typedef struct a_regress_simple a::regress_simple
 

Functions

void a_regress_simple_init (a_regress_simple *ctx, a_float coef, a_float bias)
 initialize for simple linear regression
 
a_float a_regress_simple_eval (a_regress_simple const *ctx, a_float val)
 calculate predicted value for simple linear regression
 
a_float a_regress_simple_evar (a_regress_simple const *ctx, a_float val)
 calculate predicted value for simple linear regression
 
void a_regress_simple_ols_ (a_regress_simple *ctx, a_size n, a_float const *x, a_float const *y, a_float x_mean, a_float y_mean)
 ordinary least squares for simple linear regression
 
void a_regress_simple_olsx (a_regress_simple *ctx, a_size n, a_float const *x, a_float const *y, a_float x_mean)
 ordinary least squares for simple linear regression
 
void a_regress_simple_olsy (a_regress_simple *ctx, a_size n, a_float const *x, a_float const *y, a_float y_mean)
 ordinary least squares for simple linear regression
 
void a_regress_simple_ols (a_regress_simple *ctx, a_size n, a_float const *x, a_float const *y)
 ordinary least squares for simple linear regression
 
void a_regress_simple_zero (a_regress_simple *ctx)
 zeroing for simple linear regression
 

Detailed Description