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

📄 tentmap.cpp

📁 时间序列分析的信号处理MATLAB工具包
💻 CPP
字号:
#include <math.h>#include "mex.h"#ifdef MATLAB_MEX_FILE#undef malloc#undef realloc#undef free#define malloc mxMalloc#define realloc mxRealloc#define free mxFree#define printf mexPrintf#endifdouble g(const double y, const double h, const double e){	const double t = 2.0 * h;	const double p = pow(t, e);	return (pow(y + t, e) - p) / (pow(1+t, e) - p);}void mexFunction(int nlhs, mxArray  *plhs[], int nrhs, const mxArray  *prhs[]){				/* check input args */	if (nrhs < 2)	{		mexErrMsgTxt("Tentmap : number of samples to compute and parameter vector must be given");		return;	}		/* handle matrix I/O */		const long length = (long) *(double *)mxGetPr(prhs[0]);		if (length < 1) {		mexErrMsgTxt("requested number of samples must be positive");		return;	}			const double* params = (double *)mxGetPr(prhs[1]);	if (mxGetM(prhs[1])*mxGetN(prhs[1]) < 4) {		mexErrMsgTxt("Need parameter vector of length 4 (h, e, s, x0)");		return;	}			const double h = params[0];	const double e = params[1];	const double s = params[2];	double x0 = params[3];		plhs[0] = mxCreateDoubleMatrix(length, 1, mxREAL);    double* out = (double *) mxGetPr(plhs[0]);				for (long i = 0; i < length; i++) {		const double x = s * (1 - g(fabs(2 * x0 - 1), h, e));  				out[i] = x0 = x;	}}	

⌨️ 快捷键说明

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