liba 0.1.15
An algorithm library based on C/C++
 
Loading...
Searching...
No Matches
regress.h
Go to the documentation of this file.
1
7
8#ifndef LIBA_REGRESS_H
9#define LIBA_REGRESS_H
10
11#include "a.h"
12
18
19#if defined(__cplusplus)
20extern "C" {
21#endif /* __cplusplus */
22
30A_EXTERN void a_regress_odm_(a_size n, a_float const *p, a_float *odm, a_float p_mean);
31
39A_EXTERN a_float a_regress_odm(a_size n, a_float const *p, a_float *odm);
40
41#if defined(__cplusplus)
42} /* extern "C" */
43#endif /* __cplusplus */
44
46
47#endif /* a/regress.h */
algorithm library
double a_float
compiler built-in floating-point number type
Definition a.h:1003
a_float a_regress_odm(a_size n, a_float const *p, a_float *odm)
calculate observation deviation from mean for regression
void a_regress_odm_(a_size n, a_float const *p, a_float *odm, a_float p_mean)
calculate observation deviation from mean for regression
size_t a_size
unsigned integer type returned by the sizeof operator
Definition a.h:823