[BACK]Return to mh.h CVS log [TXT][DIR] Up to [local] / OpenXM / src / hgm / mh / src

Annotation of OpenXM/src/hgm/mh/src/mh.h, Revision 1.5

1.5     ! takayama    1: /* $OpenXM: OpenXM/src/hgm/mh/src/mh.h,v 1.4 2013/03/05 06:00:52 takayama Exp $ */
1.1       takayama    2: struct cWishart {
                      3:   double x;
                      4:   double rank;
                      5:   double *f;  /* f[0],...,f[rank-1] */
                      6:   void *aux;
                      7:   void *aux2;
                      8: };
                      9:
                     10: /* Cumulative probability distribution function of the first eigenvalue of
                     11:    Wishart matrix by Series */
                     12: struct cWishart *mh_cwishart_s(int m,int n,double beta[],double x0,
1.5     ! takayama   13:                                int approxDeg,double h, int dp, double x);
1.1       takayama   14: /* Cumulative probability distribution function of the first eigenvalue of
                     15:    Wishart matrix by HGM */
                     16: struct cWishart *mh_cwishart_hgm(int m,int n,double beta[],double x0,
1.5     ! takayama   17:                                  int approxDeg, double h, int dp, double x);
1.3       takayama   18: struct cWishart *mh_cwishart_gen(int m,int n,double beta[],double x0,
1.5     ! takayama   19:                                  int approxDeg,double h, int dp, double x,int modep[]);
1.1       takayama   20: struct cWishart *new_cWishart(int rank);

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>