C-part of tests ready [TODO: R part]
[valse.git] / src / sources / EMGLLF.h
1 #ifndef valse_EMGLLF_H
2 #define valse_EMGLLF_H
3
4 void EMGLLF_core(
5 // IN parameters
6 const float* phiInit,
7 const float* rhoInit,
8 const float* piInit,
9 const float* gamInit,
10 int mini,
11 int maxi,
12 float gamma,
13 float lambda,
14 const float* X,
15 const float* Y,
16 float tau,
17 // OUT parameters
18 float* phi,
19 float* rho,
20 float* pi,
21 float* LLF,
22 float* S,
23 // additional size parameters
24 int n,
25 int p,
26 int m,
27 int k);
28
29 #endif