X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=src%2Fsources%2Fselectiontotale.h;fp=src%2Fsources%2Fselectiontotale.h;h=2d02da8af70f2e7c8859b713711c1b925a07a3c5;hb=493a35bfea6d1210c94ced8fbfe3e572f0389ea5;hp=0000000000000000000000000000000000000000;hpb=35b42a4bd37b162a3d579693b2b5fa4913a52ed5;p=valse.git diff --git a/src/sources/selectiontotale.h b/src/sources/selectiontotale.h new file mode 100644 index 0000000..2d02da8 --- /dev/null +++ b/src/sources/selectiontotale.h @@ -0,0 +1,33 @@ +#ifndef select_selectiontotale_H +#define select_selectiontotale_H + +#include "ioutils.h" + +// Main job on raw inputs (after transformation from mxArray) +void selectiontotale( + // IN parameters + const Real* phiInit, + const Real* rhoInit, + const Real* piInit, + const Real* gamInit, + Int mini, + Int maxi, + Real gamma, + const Real* glambda, + const Real* X, + const Real* Y, + Real seuil, + Real tau, + // OUT parameters + Int* A1, + Int* A2, + Real* Rho, + Real* Pi, + // additional size parameters + mwSize n, + mwSize p, + mwSize m, + mwSize k, + mwSize L); + +#endif