用斜率的方法来求时间序列的lyapunov exponent,在非线性动力学和时间序列处理中经常用到。很实用的小程序。
上传时间: 2014-01-20
上传用户:wl9454
计算微分方程系统的Lyapunv exponent,在非线性动力学和有关混沌的研究中非常有用。
上传时间: 2015-08-28
上传用户:hj_18
计算Detrended Fluctuation exponent(DFA)指数
标签: Fluctuation Detrended exponent DFA
上传时间: 2015-10-30
上传用户:秦莞尔w
这是求一个最大Lyapunov指数(largest Lyapunov exponent)的matlab预案程序代码。
标签: Lyapunov exponent largest matlab
上传时间: 2014-01-07
上传用户:xyipie
function [U,center,result,w,obj_fcn]= fenlei(data) [data_n,in_n] = size(data) m= 2 % exponent for U max_iter = 100 % Max. iteration min_impro =1e-5 % Min. improvement c=3 [center, U, obj_fcn] = fcm(data, c) for i=1:max_iter if F(U)>0.98 break else w_new=eye(in_n,in_n) center1=sum(center)/c a=center1(1)./center1 deta=center-center1(ones(c,1),:) w=sqrt(sum(deta.^2)).*a for j=1:in_n w_new(j,j)=w(j) end data1=data*w_new [center, U, obj_fcn] = fcm(data1, c) center=center./w(ones(c,1),:) obj_fcn=obj_fcn/sum(w.^2) end end display(i) result=zeros(1,data_n) U_=max(U) for i=1:data_n for j=1:c if U(j,i)==U_(i) result(i)=j continue end end end
标签: data function exponent obj_fcn
上传时间: 2013-12-18
上传用户:ynzfm
1. 实现原理: * 任何一个数都可以表示成指数形式,如下所示: * * N=nEe (0=<n的绝对值<=1,e为10的指数幂) * * 例如100可以表示成1E2,1001可以表示成1.01E3 * * 类 CBigNumber的成员number为上述的n,exponent为上述的e * * 2. 如何使用这个类: * * 你可以把CBigNumber的头文件和实现函数加入你的工程,然后定义 * * 该类的实例,就可以对这些实例进行加减乘除了(详见示例程序)
标签:
上传时间: 2013-12-31
上传用户:gtf1207
Distribution generator Here is a simple generator which can build some distributions with given properties. Distributions generator (compile with -lm) Typical use might be: ./distributions -u -m 1 -M 10 -n 100 -s 500 Generates a distribution of 100 uniform random numbers between 1 and 10, such that the sum of numbers is 500. ./distributions -p -2.2 -m 1 -M 100 -n 200 -s 500 Idem with 200 numbers between 1 and 100 following a power law with exponent -
标签: generator distributions Distribution simple
上传时间: 2014-01-27
上传用户:sammi
本程序是11位带符号位的乘法器,其中最高位为符号位(sign),中间7位是指数部分(exponent),最后3位是尾数(Matissa)。表示数据的范围是-2^-63-----+2^64.该工程文件有完整的程序,以及波形,验证正确。
上传时间: 2013-12-31
上传用户:大三三
SFLOP simulates a floating point operation x op y where op = +, -, *, / In chopping or rounding arithmetic using an m digit mantissa, base 10, and an unrestricted exponent range. (sflop: Simulate FLOating Point operation.) For more details on the how the floating point representation of a number is computed see the function sfl.
标签: simulates operation floating SFLOP
上传时间: 2017-06-05
上传用户:fxf126@126.com