Code covered by the BSD License
-
Z=combinations(a,b);
function Z=combinations(a,b);
-
[bins,np]=corrint(y,de,tau,nb...
-
[chsq,prob,nu]=chisq(b1,b2,nu...
-
[d,i]=nearneigh(X,tau,blocksi...
function [d,i]=nearneigh(X,tau,blocksize)
-
[m,d,k,s,gki]=gka(y,de,tau,nb...
-
[m,dcm,eps0,cim]=judd(y,de,ta...
-
e=rms(y);
-
embed(z,v,w)
-
fit=gka_dks(xi,phi,m,tau,band...
function fit=gka_dks(xi,phi,m,tau,bands,gki,ss);
-
fit=gka_dsb(xi,m,bands,gki,ss...
function fit=gka_dsb(xi,m,bands,gki,ss);
-
fit=gka_kphi(xi,b,m,tau);
function fit=gka_kphi(xi,b,m,tau);
-
fit=judd_da(xi,eps,ci);
function fit=gka_dks(xi,eps,ci);
-
normalize(v)
-
p=plotmat3(x1,x2,x3,x4,x5,x6,...
-
plotcols(x1,x2,x3,x4,x5,x6,x7...
-
plotmat(x1,x2,x3,x4,x5,x6,x7,...
-
qrdelete(Q,R,j,orient)
QRDELETE Delete a column or row from QR factorization.
-
rms=compare(y,n,m);
%Michael Small
-
syntax(filename)
function syntax(filename)
-
time_to_die(after,before);
function time_to_die(after);
-
trace(p1,p2)
-
x=mov_av(y,k);
-
y=gkifit(d,s,b,m,bands);
-
y=judd_fit(d,a,eps);
-
z=nnn(x,n);
-
interbin.m
-
interbinref.m
-
interpoint.m
-
nearest.m
-
newseed.m
-
reseed.m
-
test.m
-
View all files
from
Correlation dimension
by Peng Yuehua
Correlation dimension estimation code.
|
| fit=gka_dsb(xi,m,bands,gki,ss); |
function fit=gka_dsb(xi,m,bands,gki,ss);
%function fit=gka_dsb(xi,m,bands,gki,ss);
%
%return RMS error of the fit of b*(h^2/(h^2+s^2))^(m/2)*((h^2+s^2)/m)^(D/2) to gki(h)
%where
% xi(1)=D : correlation dimension
% xi(2)=s : noise level
% xi(3)=b : coefficient (entropy term times constant)
% m=m : embedding dimension
% h=bands : bandwidths
% gki(h)=gki : Gaussian kernel correlation integral
%
%no check of args is done (to speed up calculation)
%
% For more info, read README
%
% Michael Small
% ensmall@polyu.edu.hk
% 28/2/02
d=xi(1);
s=xi(2);
b=xi(3);
h2=bands.^2;
fit=b * [(h2./(h2+s.^2)).^(m/2)] .* [((h2+s.^2)./m).^(d/2)];
fit=gki-fit;
fit=(fit.^2)*ss'; %Euclidean norm
|
|
Contact us at files@mathworks.com