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
8#ifndef LIBA_REGRESS_H
9#define LIBA_REGRESS_H
10
11#include "a.h"
12
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
47#endif /* a/regress.h */
algorithm library
#define a_float
Definition a.h:785
double a_regress_odm(size_t n, double const *p, double *odm)
calculate observation deviation from mean for regression
void a_regress_odm_(size_t n, double const *p, double *odm, double p_mean)
calculate observation deviation from mean for regression
#define a_size
Definition a.h:610