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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/* -*- c++ -*- */
/*
* Copyright 2013 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <gnuradio/math.h>
#include <boost/test/unit_test.hpp>
#include <cmath>
#include <limits>
#ifdef _MSC_VER
#define ISNAN _isnan
#else
#define ISNAN std::isnan
#endif
BOOST_AUTO_TEST_CASE(t1)
{
static const int N = 100;
float c_atan2;
float gr_atan2f;
for (float i = -N / 2; i < N / 2; i++) {
for (float j = -N / 2; j < N / 2; j++) {
float x = i / 10.0;
float y = j / 10.0;
c_atan2 = atan2(y, x);
gr_atan2f = gr::fast_atan2f(y, x);
BOOST_CHECK_CLOSE(c_atan2, gr_atan2f, 0.001);
}
}
}
BOOST_AUTO_TEST_CASE(t2)
{
float c_atan2;
float gr_atan2f;
float x, y;
float inf = std::numeric_limits<float>::infinity();
float nan = std::numeric_limits<float>::quiet_NaN();
/* Test x as INF */
x = inf;
y = 0;
c_atan2 = atan2(y, x);
gr_atan2f = gr::fast_atan2f(y, x);
BOOST_CHECK_CLOSE(c_atan2, gr_atan2f, 0.0);
x = -inf;
y = 0;
c_atan2 = atan2(y, x);
gr_atan2f = gr::fast_atan2f(y, x);
BOOST_CHECK_CLOSE(c_atan2, gr_atan2f, 0.0);
/* Test y as INF */
x = 0;
y = inf;
c_atan2 = atan2(y, x);
gr_atan2f = gr::fast_atan2f(y, x);
BOOST_CHECK_CLOSE(c_atan2, gr_atan2f, 0.0);
x = 0;
y = -inf;
c_atan2 = atan2(y, x);
gr_atan2f = gr::fast_atan2f(y, x);
BOOST_CHECK_CLOSE(c_atan2, gr_atan2f, 0.0);
/* Test x and y as INF */
x = inf;
y = inf;
gr_atan2f = gr::fast_atan2f(y, x);
BOOST_CHECK(ISNAN(gr_atan2f));
/* Test x as NAN */
x = nan;
y = 0;
gr_atan2f = gr::fast_atan2f(y, x);
BOOST_CHECK_CLOSE(0.0f, gr_atan2f, 0.0001);
x = -nan;
y = 0;
gr_atan2f = gr::fast_atan2f(y, x);
BOOST_CHECK_CLOSE(0.0f, gr_atan2f, 0.0001);
/* Test y as NAN */
x = 0;
y = nan;
gr_atan2f = gr::fast_atan2f(y, x);
BOOST_CHECK_CLOSE(0.0f, gr_atan2f, 0.0001);
x = 0;
y = -nan;
gr_atan2f = gr::fast_atan2f(y, x);
BOOST_CHECK_CLOSE(0.0f, gr_atan2f, 0.0001);
/* Test mixed NAN and INF */
x = inf;
y = nan;
gr_atan2f = gr::fast_atan2f(y, x);
BOOST_CHECK(ISNAN(gr_atan2f));
x = nan;
y = inf;
gr_atan2f = gr::fast_atan2f(y, x);
BOOST_CHECK(ISNAN(gr_atan2f));
}
|