Commit | Line | Data |
---|---|---|
8e92c49c BA |
1 | #ifndef valse_constructionModelesLassoMLE_H |
2 | #define valse_constructionModelesLassoMLE_H | |
1d3c1faa | 3 | |
09ab3c16 | 4 | void constructionModelesLassoMLE_core( |
8e92c49c | 5 | // IN parameters |
afa07d41 BA |
6 | const float* phiInit, |
7 | const float* rhoInit, | |
8 | const float* piInit, | |
9 | const float* gamInit, | |
8e92c49c BA |
10 | int mini, |
11 | int maxi, | |
afa07d41 BA |
12 | float gamma, |
13 | const float* glambda, | |
14 | const float* X, | |
15 | const float* Y, | |
16 | float seuil, | |
17 | float tau, | |
8e92c49c BA |
18 | const int* A1, |
19 | const int* A2, | |
1d3c1faa | 20 | // OUT parameters |
afa07d41 BA |
21 | float* phi, |
22 | float* rho, | |
23 | float* pi, | |
24 | float* lvraisemblance, | |
1d3c1faa | 25 | // additional size parameters |
8e92c49c BA |
26 | int n, |
27 | int p, | |
28 | int m, | |
29 | int k, | |
30 | int L); | |
1d3c1faa BA |
31 | |
32 | #endif |