Skip to content

Commit

Permalink
Format .jl files
Browse files Browse the repository at this point in the history
  • Loading branch information
sshin23 authored Oct 18, 2024
1 parent 78b3552 commit ebe63d6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/functionlist.jl
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,13 @@
x -> 57.29577951308232286464772187173366546630859375 * 2 * x / (1 + x^2)^2
)
@register_univariate(Base.sinh, cosh, sinh)
@register_univariate(Base.asinh, x -> 1/sqrt(x^2 + 1), x -> - x/sqrt(x^2 + 1)^3)
@register_univariate(Base.asinh, x -> 1 / sqrt(x^2 + 1), x -> -x / sqrt(x^2 + 1)^3)
@register_univariate(Base.cosh, sinh, cosh)
@register_univariate(Base.acosh, x -> 1/sqrt((x-1)*(x+1)), x -> - x/sqrt((x - 1)*(x + 1))^3)
@register_univariate(
Base.acosh,
x -> 1 / sqrt((x - 1) * (x + 1)),
x -> -x / sqrt((x - 1) * (x + 1))^3
)
@register_univariate(Base.tanh, x -> 1 - tanh(x)^2, x -> -2 * tanh(x) * (1 - tanh(x)^2))
@register_univariate(
Base.csch,
Expand Down

0 comments on commit ebe63d6

Please sign in to comment.