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


Operators.cosh

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

Описание

Возвращает гиперболический косинус заданного выражения


Пример

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

let newExpr = Operators.cosh exp 

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

Вывод

1: 
cosh(4*x)