用斜率的方法來求時間序列的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