And tangent

This commit is contained in:
Kat R. 2022-10-27 23:53:21 -05:00
parent 4bca9fd69d
commit 5956361088
1 changed files with 5 additions and 0 deletions

5
math/tan.c Normal file
View File

@ -0,0 +1,5 @@
#include <math.h>
double tan(double x) {
return (cos(x - M_PI_2) / cos(x))
}