diff options
author | tlatorre <tlatorre@uchicago.edu> | 2018-08-28 10:39:36 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2018-08-28 10:39:36 -0500 |
commit | ebc95aa65925b06ce06c9db2791d8143448f2643 (patch) | |
tree | c1f602a360e8d770500241b3848a6e1a494317b2 /src/path.h | |
parent | ac721f37eb1b14ec91dbb14450752cb240a721cf (diff) | |
download | sddm-ebc95aa65925b06ce06c9db2791d8143448f2643.tar.gz sddm-ebc95aa65925b06ce06c9db2791d8143448f2643.tar.bz2 sddm-ebc95aa65925b06ce06c9db2791d8143448f2643.zip |
add path to the likelihood fit
This commit updates the likelihood fit to use the KL path expansion. Currently,
I'm just using one coefficient for the path in both x and y.
Diffstat (limited to 'src/path.h')
-rw-r--r-- | src/path.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ typedef struct path { double path_get_coefficient(unsigned int k, double *s, double *x, double theta0, size_t n); path *path_init(double *pos, double *dir, double T0, double range, double theta0, getKineticEnergyFunc *fun, double *z1, double *z2, size_t n, double m); -void path_eval(path *p, double s, double *pos, double *dir, double *T, double *t); +void path_eval(path *p, double s, double *pos, double *dir, double *T, double *t, double *theta0); void path_free(path *p); #endif |