curves.h

来自「EM算法的改进」· C头文件 代码 · 共 82 行

H
82
字号
/* * $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 + =
减小字号Ctrl + -
显示快捷键?