view m-toolbox/test/test_ao_psd_var.m @ 33:5e7477b94d94 database-connection-manager

Add known repositories list to LTPDAPreferences
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source


%%
a = ao(plist('waveform', 'noise', 'nsecs', 1e6, 'sigma', 25, 'yunits', 'm'));

Navs = [2:10 20:20:100 200:200:1000 5000 10000];

for jj=1:length(Navs)
  S = a.psd(plist('navs',Navs(jj),'win','BH92'));
  rat(jj) = mean((S.dy)./S.y);
  N(jj) = S.data.navs;
end

figure
loglog(Navs, rat, 'b+');
hold on
grid on
loglog(Navs, 1./sqrt(N),'k');
xlabel('N');
ylabel('(S.dy)./S.y');
legend('','1/sqrt(N)')