And tangent

This commit is contained in:
Kat R. 2022-10-27 23:53:21 -05:00
parent 4bca9fd69d
commit 5956361088

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))
}