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