Документация к Math.NET Symbolics


Operators.arccos

1: 
val arccos : x : Expression ->  Expression
CompiledName: arccos

Описание

Возвращает арккосинус заданного выражения


Пример

1: 
2: 
3: 
4: 
5: 
6: 
7: 
let exp = "4*x" |> Infix.parseOrUndefined

let newExpr = Operators.arccos exp 

newExpr
|> Infix.format
|> printfn "%s"

Вывод

1: 
acos(4*x)