FFmpeg
|
linear least squares model More...
#include <math.h>
#include <string.h>
#include "attributes.h"
#include "version.h"
#include "lls1.h"
Go to the source code of this file.
Functions | |
av_cold void | avpriv_init_lls (LLSModel *m, int indep_count) |
void | avpriv_update_lls (LLSModel *m, double *var, double decay) |
void | avpriv_solve_lls (LLSModel *m, double threshold, unsigned short min_order) |
double | avpriv_evaluate_lls (LLSModel *m, double *param, int order) |
av_cold void | av_init_lls (LLSModel *m, int indep_count) |
void | av_update_lls (LLSModel *m, double *param, double decay) |
void | av_solve_lls (LLSModel *m, double threshold, int min_order) |
double | av_evaluate_lls (LLSModel *m, double *param, int order) |
linear least squares model
Definition in file lls1.c.
Definition at line 37 of file lls1.c.
Referenced by av_init_lls().
Definition at line 43 of file lls1.c.
Referenced by av_update_lls().
Definition at line 55 of file lls1.c.
Referenced by av_solve_lls().
double avpriv_evaluate_lls | ( | LLSModel * | m, |
double * | param, | ||
int | order | ||
) |
Definition at line 112 of file lls1.c.
Referenced by av_evaluate_lls().