mirror of https://github.com/rm-dr/daisy
Renamed `sec` to `secant`
parent
475d0e7c07
commit
14ab0bd1d8
|
@ -49,7 +49,7 @@ Note that implicit multiplication has a higher priority than mulitiplication and
|
|||
| Logarithm (base e) | `ln` |
|
||||
| Logarithm (base 10) | `log` |
|
||||
| sin, arcsin, cosecant | `sin`, `asin`, `csc` |
|
||||
| cos, arccos, secant | `cos`, `acos`, `sec` |
|
||||
| cos, arccos, secant | `cos`, `acos`, `secant` |
|
||||
| tan, arctan, cotan | `tan`, `atan`, `cot` |
|
||||
| hyperbolic sin, etc | `sinh`, `asinh`, `csch` |
|
||||
| hyperbolic cos, etc | `cosh`, `acosh`, `sech` |
|
||||
|
|
|
@ -238,7 +238,7 @@ impl Operator {
|
|||
"acos" => {Some( Operator::Function(Function::Acos) )},
|
||||
"atan" => {Some( Operator::Function(Function::Atan) )},
|
||||
"csc" => {Some( Operator::Function(Function::Csc) )},
|
||||
"sec" => {Some( Operator::Function(Function::Sec) )},
|
||||
"secant" => {Some( Operator::Function(Function::Sec) )},
|
||||
"cot" => {Some( Operator::Function(Function::Cot) )},
|
||||
"sinh" => {Some( Operator::Function(Function::Sinh) )},
|
||||
"cosh" => {Some( Operator::Function(Function::Cosh) )},
|
||||
|
|
Loading…
Reference in New Issue