-
Notifications
You must be signed in to change notification settings - Fork 14
/
repeated_median.hh
103 lines (95 loc) · 2 KB
/
repeated_median.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
Repeated median estimator of Siegel
Copyright 2021 Ahmet Inan <inan@aicodix.de>
*/
#pragma once
#include "quick.hh"
namespace DSP {
template <typename TYPE, int SIZE>
class RepeatedMedianEstimator
{
TYPE inner_[SIZE-1], outer_[SIZE];
TYPE xint_, yint_, slope_;
public:
RepeatedMedianEstimator() : xint_(0), yint_(0), slope_(0) {}
void compute(const TYPE *x, const TYPE *y, int LEN)
{
if (LEN > SIZE)
LEN = SIZE;
for (int i = 0; i < LEN; ++i) {
int count = 0;
for (int j = 0; j < LEN; ++j)
if (x[j] != x[i])
inner_[count++] = (y[j] - y[i]) / (x[j] - x[i]);
outer_[i] = quick_select(inner_, count/2, count);
}
slope_ = quick_select(outer_, LEN/2, LEN);
for (int i = 0; i < LEN; ++i) {
int count = 0;
for (int j = 0; j < LEN; ++j)
if (x[j] != x[i])
inner_[count++] = (x[j]*y[i] - x[i]*y[j]) / (x[j] - x[i]);
outer_[i] = quick_select(inner_, count/2, count);
}
yint_ = quick_select(outer_, LEN/2, LEN);
xint_ = - yint_ / slope_;
}
TYPE xint()
{
return xint_;
}
TYPE slope()
{
return slope_;
}
TYPE yint()
{
return yint_;
}
TYPE operator () (TYPE x)
{
return yint_ + slope_ * x;
}
};
template <typename TYPE, int SIZE>
class RepeatedMedianEstimator2
{
TYPE inner_[SIZE-1], outer_[SIZE];
TYPE xint_, yint_, slope_;
public:
RepeatedMedianEstimator2() : xint_(0), yint_(0), slope_(0) {}
void compute(const TYPE *x, const TYPE *y, int LEN)
{
if (LEN > SIZE)
LEN = SIZE;
for (int i = 0; i < LEN; ++i) {
int count = 0;
for (int j = 0; j < LEN; ++j)
if (x[j] != x[i])
inner_[count++] = (y[j] - y[i]) / (x[j] - x[i]);
outer_[i] = quick_select(inner_, count/2, count);
}
slope_ = quick_select(outer_, LEN/2, LEN);
for (int i = 0; i < LEN; ++i)
outer_[i] = y[i] - slope_ * x[i];
yint_ = quick_select(outer_, LEN/2, LEN);
xint_ = - yint_ / slope_;
}
TYPE xint()
{
return xint_;
}
TYPE slope()
{
return slope_;
}
TYPE yint()
{
return yint_;
}
TYPE operator () (TYPE x)
{
return yint_ + slope_ * x;
}
};
}