-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfastTrig.h
120 lines (87 loc) · 2.75 KB
/
fastTrig.h
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
/**************************************************************************/
/*!
@file fastTrig.h
@author Stuart Feichtinger
@license MIT (see license.txt)
My attempts to speed up the trig functions I need.
@section HISTORY
v0.0.1 - First release
*/
/**************************************************************************/
#ifndef _FASTTRIG_H_
#define _FASTTRIG_H_
#include <avr/pgmspace.h>
#define LOOKUP_SIZE 14
const uint16_t acos_lookup[][2] PROGMEM = {
{0, 90}, {35, 88}, {208, 78},
{358, 69}, {407, 66}, {530, 58},
{720, 44}, {819, 35}, {883, 28},
{920, 23}, {940, 20}, {970, 14},
{990,8}, {1000, 0}};
double Q_rsqrt( double number )
{
long i;
double x2, y;
const double threehalfs = 1.5F;
x2 = number * 0.5F;
y = number;
i = * ( long * ) &y; // evil doubleing point bit level hacking
i = 0x5f3759df - ( i >> 1 ); // what the fuck?
y = * ( double * ) &i;
y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
// y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed
return y;
}
int searchLookupTable(int target, const uint16_t (*lookUpTable)[2], int tableSize){
int i;
int bestIndex;
for(i=0; i<tableSize; i++){
/*
Serial.print(pgm_read_word_near(&(lookUpTable[i][0])));
Serial.print(F(", "));
Serial.println(pgm_read_word(&(lookUpTable[i][1])));
*/
if(target > pgm_read_word_near(&(lookUpTable[i][0]))){
//Serial.println(pgm_read_word_near(lookUpTable + i*2 + 1));
bestIndex = i;
}
else{
return bestIndex;
}
}
return bestIndex;
}
inline uint16_t _memRead(const uint16_t (*lTable)[2], uint8_t i1, uint8_t i2){
return pgm_read_word(&(lTable[i1][i2]));
}
uint16_t lerp(int index, const uint16_t (*lTable)[2], uint16_t x){
uint16_t y;
int32_t tmp;
tmp = x - _memRead(lTable, index, 0);
tmp *= (int)(_memRead(lTable, index + 1, 1) - _memRead(lTable, index, 1));
tmp /= (_memRead(lTable, index + 1, 0) - _memRead(lTable, index, 0));
y = _memRead(lTable, index, 1) + tmp;
return(y);
}
int fast_acos(double val){
int sign;
(val > 0) ? sign = 1 : sign = -1;
int lVal = sign*1000*val; // scale value to change to int
//Serial.println(lVal);
int index = searchLookupTable(lVal, acos_lookup, LOOKUP_SIZE);
/*
Serial.println(F("index"));
Serial.println(index);
*/
// adjust if val is outside the lookup table
(index + 1 >= LOOKUP_SIZE) ? index -= 1 : index;
// Serial.println(F("Adjusted index"));
// Serial.println(index);
if(sign > 0){
return lerp(index, acos_lookup, lVal);
}
else{
return 180 - lerp(index, acos_lookup, lVal);
}
};
#endif