C-part of tests ready [TODO: R part]
[valse.git] / src / sources / selectiontotale.h
1 #ifndef valse_selectiontotale_H
2 #define valse_selectiontotale_H
3
4 // Main job on raw inputs (after transformation from mxArray)
5 void selectiontotale_core(
6 // IN parameters
7 const float* phiInit,
8 const float* rhoInit,
9 const float* piInit,
10 const float* gamInit,
11 int mini,
12 int maxi,
13 float gamma,
14 const float* glambda,
15 const float* X,
16 const float* Y,
17 float seuil,
18 float tau,
19 // OUT parameters
20 int* A1,
21 int* A2,
22 float* Rho,
23 float* Pi,
24 // additional size parameters
25 int n,
26 int p,
27 int m,
28 int k,
29 int L);
30
31 #endif