view src/ltpda_smoother/test_mnfest.m @ 18:947e2ff4b1b9
database-connection-manager
Update plist.FROM_REPOSITORY_PLIST and plist.TO_REPOSITORY_PLIST
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
clear;
%% Create test data
bw = 20;
ol = 0.8;
xx = rand(1,1000).^2;
xx(500) = 10;
% Make AO
a = ao(1:length(xx),xx);
s = smoother(a)
nxx = ltpda_smoother(xx, bw, ol, 'median');
b = ao(1:length(xx), nxx);
iplot(s,b)
iplot(s./b)