Phenomenology of testing the model

From InterSciWiki

Jump to: navigation, search


Comparing two empirical distributions using point data In simulating a curve

n = 10^2;
x = rand(n,1);
figure(1);
plot(sort(x),(n:-1:1)./n);
n = 10^2;
x = rand(n,1);
y = rand(n,1);
figure(1);
plot(sort(x),sort(y));
xmin = 0;
theta = 2;
sigma = 3;
n = 10^2;
x = (xmin+sigma).*(1-rand(n,1)).^(-1/theta) - sigma;
loglog(sort(x),(n:-1:1)./n);
Personal tools