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