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