Created
September 7, 2018 19:23
-
-
Save native-m/19cb51466a449c2a45535aa338af52b8 to your computer and use it in GitHub Desktop.
My sin function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
double fast_sin(double x) | |
{ | |
return x * | |
(x * x * (x * x * | |
(x * x * (x * x * | |
(x * x * (x * x * | |
1.6059043837e-10 - 2.5052108385e-8) | |
+ 0.0000027557319224) - 0.000198412698413) | |
+ 0.00833333333333) - 0.166666666667) + (double)1.0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment