projects
/
valse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
fix EMGLLF.R line 64: sum(gam,1) in MATLAB is colSums(gam) in R
[valse.git]
/
src
/
sources
/
constructionModelesLassoMLE.h
1
#ifndef valse_constructionModelesLassoMLE_H
2
#define valse_constructionModelesLassoMLE_H
3
4
void
constructionModelesLassoMLE_core
(
5
// IN parameters
6
const float
*
phiInit
,
7
const float
*
rhoInit
,
8
const float
*
piInit
,
9
const float
*
gamInit
,
10
int
mini
,
11
int
maxi
,
12
float
gamma
,
13
const float
*
glambda
,
14
const float
*
X
,
15
const float
*
Y
,
16
float
seuil
,
17
float
tau
,
18
const int
*
A1
,
19
const int
*
A2
,
20
// OUT parameters
21
float
*
phi
,
22
float
*
rho
,
23
float
*
pi
,
24
float
*
lvraisemblance
,
25
// additional size parameters
26
int
n
,
27
int
p
,
28
int
m
,
29
int
k
,
30
int
L
);
31
32
#endif