⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 curves.h

📁 EM算法的改进
💻 H
字号:
/* * $Id: curves.h 1339 2006-09-21 19:46:28Z tbailey $ *  * $Log$ * Revision 1.1  2005/07/29 18:36:29  nadya * Initial revision * *//************************************************************************                                                                      **       MEME++                                                         **       Copyright 1995, The Regents of the University of California    **       Author: Timothy L. Bailey                                      **                                                                      ************************************************************************/#ifndef CURVES_H#define CURVES_H#define 	MAXPARMS	10/* the type of the curve function */typedef char (*FTYPE( 	float	X,	float	A[],		float *YFit,	float	dYdA[],		int mode));extern FTYPE *get_curve_type(  int mode,				/* type of curve */  int *nparms				/* number of parameters */);extern char *negexp( 	float	X,	float	A[],		float *YFit,	float	dYdA[],		int mode);extern char *logcurve(	float	X,	float	A[],		float *YFit,	float	dYdA[],		int mode);extern char *logcurve2(	float	X,	float	A[],		float *YFit,	float	dYdA[],		int mode);extern char *logexp( 	float	X,	float	A[],		float *YFit,	float	dYdA[],		int mode);extern char *loglog(	float	X,	float	A[],		float *YFit,	float	dYdA[],		int mode);extern char *negexp2( 	float	X,	float	A[],		float *YFit,	float	dYdA[],		int mode);extern char *invsqrt(	float	X,	float	A[],		float *YFit,	float	dYdA[],		int mode);extern char *logcurve3(	float	X,	float	A[],		float *YFit,	float	dYdA[],		int mode);extern char *logcurve4(	float	X,	float	A[],		float *YFit,	float	dYdA[],		int mode);extern char *gcurve(	float	X,	float	A[],		float *YFit,	float	dYdA[],		int mode);extern char *rootlog(	float	X,	float	A[],		float *YFit,	float	dYdA[],		int mode);extern char *gsdcurve(	float	X,	float	A[],		float *YFit,	float	dYdA[],		int mode);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -