test_fast_atan2.h
Go to the documentation of this file.
1 /*
2  * Copyright 2020 Autoware Foundation. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include <cmath>
18 
19 #include <ros/ros.h>
20 
22 
24 {
25  double nb_of_sample = 100;
26  double epsilon_rad = 1.0E-5F; // to avoid the non defined value of tan/atan
27  double max_error_expected = 0.005; // radian
28 
29  double step_size = PI/nb_of_sample;
30  for( double angle = -PI_2+epsilon_rad; angle < PI_2-epsilon_rad; angle += step_size)
31  {
32  double y_value = tan(angle);
33  double reference_value = atan2(y_value, 1);
34  double tested_value = fast_atan2(y_value, 1);
35  ASSERT_LT(fabsf(reference_value-tested_value), max_error_expected) \
36  << "atan2 approximation's error is above the expected error : " \
37  << fabsf(reference_value-tested_value);
38  reference_value = atan2(y_value, -1);
39  tested_value = fast_atan2(y_value, -1);
40  ASSERT_LT(fabsf(reference_value-tested_value), max_error_expected) \
41  << "atan2 approximation's error is above the expected error : " \
42  << fabsf(reference_value-tested_value);
43  }
44 }
angle
TFSIMD_FORCE_INLINE tfScalar angle(const Quaternion &q1, const Quaternion &q2)
fast_atan2
float fast_atan2(float y, float x)
Definition: atan2_utils.h:46
ros.h
PI
constexpr float PI
pi
Definition: atan2_utils.h:24
atan2_utils.h
This file provides a fast but approximate atan2 function.
RayGroundFilter
Definition: ray_ground_filter.h:38
PI_2
constexpr float PI_2
pi/2
Definition: atan2_utils.h:26
TEST
TEST(RayGroundFilter, fast_atan2)
Definition: test_fast_atan2.h:23


points_preprocessor
Author(s): n-patiphon , aohsato
autogenerated on Wed Mar 2 2022 00:12:07