Commit fb4b1607 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '7ac6d242'

* commit '7ac6d242':
  lls: K&R formatting cosmetics
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 41401773 7ac6d242
......@@ -30,12 +30,12 @@
/**
* Linear least squares model.
*/
typedef struct LLSModel{
double covariance[MAX_VARS+1][MAX_VARS+1];
typedef struct LLSModel {
double covariance[MAX_VARS + 1][MAX_VARS + 1];
double coeff[MAX_VARS][MAX_VARS];
double variance[MAX_VARS];
int indep_count;
}LLSModel;
} LLSModel;
void av_init_lls(LLSModel *m, int indep_count);
void av_update_lls(LLSModel *m, double *param, double decay);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment