em.h
来自「EM算法的改进」· C头文件 代码 · 共 51 行
H
51 行
/* * $Id: em.h 1339 2006-09-21 19:46:28Z tbailey $ * * $Log$ * Revision 1.1 2005/07/29 18:37:45 nadya * Initial revision * */#ifndef EM_H# define EM_H/* 6-28-99 tlb; remove zoops and mcm e_steps *//* 6-28-99 tlb; add wnsitesw */extern void em( MODEL *model, /* the model */ DATASET *dataset /* the dataset */);extern void m_step( MODEL *model, /* the model */ DATASET *dataset, /* the dataset */ PRIORS *priors, /* the priors */ double wnsitesw /* weight on prior on nsites */);extern double e_step( MODEL *model, /* the model */ DATASET *dataset /* the dataset */);extern double tcm_e_step( MODEL *model, /* the model */ DATASET *dataset /* the dataset */);extern double like_e_step( MODEL *model, /* the model */ DATASET *dataset /* the dataset */);extern double discretize( MODEL *model, /* the model */ DATASET *dataset /* the dataset */);extern void set_z ( MODEL *model, /* the model */ DATASET *dataset /* the dataset */);extern void convert_theta_to_log( MODEL *model, /* the model */ DATASET *dataset /* the dataset */);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?