Mercurial > hg > ltpda
comparison src/ltpda_smoother/ltpda_smoother.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 | |
2 % LTPDA_SMOOTHER A mex file to compute a running smoothing filter. | |
3 % | |
4 % function sy = ltpda_smoother(y, bw, ol, method); | |
5 % | |
6 % Inputs: | |
7 % y - data vector | |
8 % bw - bandwidth over which to compute each sample | |
9 % ol - percentage of outliers to discard from each sample estimate [0-1] | |
10 % method - choose from 'median' | |
11 % | |
12 % Outputs: | |
13 % sy - the smoothed data vector | |
14 % | |
15 % M Hewitson 02-10-06 | |
16 % |