Fixed trig functions

This commit is contained in:
2023-06-14 19:34:57 -07:00
parent 00a421756d
commit 4dfaf2b863
6 changed files with 42 additions and 50 deletions

View File

@ -138,6 +138,9 @@ impl ScalarBase for FloatBase {
foward!(sin);
foward!(cos);
foward!(tan);
foward!(csc);
foward!(sec);
foward!(cot);
foward!(asin);
foward!(acos);
foward!(atan);
@ -145,6 +148,9 @@ impl ScalarBase for FloatBase {
foward!(sinh);
foward!(cosh);
foward!(tanh);
foward!(csch);
foward!(sech);
foward!(coth);
foward!(asinh);
foward!(acosh);
foward!(atanh);