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