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

@ -121,6 +121,9 @@ impl ScalarBase for RationalBase {
cant_do!(sin);
cant_do!(cos);
cant_do!(tan);
cant_do!(csc);
cant_do!(sec);
cant_do!(cot);
cant_do!(asin);
cant_do!(acos);
cant_do!(atan);
@ -128,6 +131,9 @@ impl ScalarBase for RationalBase {
cant_do!(sinh);
cant_do!(cosh);
cant_do!(tanh);
cant_do!(csch);
cant_do!(sech);
cant_do!(coth);
cant_do!(asinh);
cant_do!(acosh);
cant_do!(atanh);