lls.h File Reference
#include "version.h"
Include dependency graph for lls.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  LLSModel
 Linear least squares model. More...
 

Macros

#define MAX_VARS   32
 

Typedefs

typedef struct LLSModel LLSModel
 Linear least squares model. More...
 

Functions

void avpriv_init_lls (LLSModel *m, int indep_count)
 
void avpriv_update_lls (LLSModel *m, double *param, double decay)
 
void avpriv_solve_lls (LLSModel *m, double threshold, unsigned short min_order)
 
double avpriv_evaluate_lls (LLSModel *m, double *param, int order)
 
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)
 

Macro Definition Documentation

#define MAX_VARS   32

Definition at line 28 of file lls.h.

Referenced by avpriv_solve_lls().

Typedef Documentation

typedef struct LLSModel LLSModel

Linear least squares model.

Function Documentation

double av_evaluate_lls ( LLSModel m,
double *  param,
int  order 
)

Definition at line 133 of file lls.c.

void av_init_lls ( LLSModel m,
int  indep_count 
)

Definition at line 121 of file lls.c.

void av_solve_lls ( LLSModel m,
double  threshold,
int  min_order 
)

Definition at line 129 of file lls.c.

void av_update_lls ( LLSModel m,
double *  param,
double  decay 
)

Definition at line 125 of file lls.c.

double avpriv_evaluate_lls ( LLSModel m,
double *  param,
int  order 
)

Definition at line 109 of file lls.c.

Referenced by av_evaluate_lls(), and ff_lpc_calc_coefs().

void avpriv_init_lls ( LLSModel m,
int  indep_count 
)

Definition at line 34 of file lls.c.

Referenced by av_evaluate_lls(), av_init_lls(), and ff_lpc_calc_coefs().

void avpriv_solve_lls ( LLSModel m,
double  threshold,
unsigned short  min_order 
)

Definition at line 52 of file lls.c.

Referenced by av_evaluate_lls(), av_solve_lls(), and ff_lpc_calc_coefs().

void avpriv_update_lls ( LLSModel m,
double *  param,
double  decay 
)

Definition at line 40 of file lls.c.

Referenced by av_evaluate_lls(), av_update_lls(), and ff_lpc_calc_coefs().