1:
val cot : x : Expression -> Expression
Возвращает котангенс заданного выражения
1: 2: 3: 4: 5: 6: 7:
let exp = "4*x" |> Infix.parseOrUndefined let newExpr = Operators.cot exp newExpr |> Infix.format |> printfn "%s"
1/tan(4*x)