Skip to content

Commit

Permalink
doc/ndarray: add ref table for hyperbolic function (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
iblislin committed Dec 16, 2017
1 parent 1e20f50 commit d921225
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docs/src/api/ndarray.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ In the following example `y` can be a `Real` value or another `NDArray`
| `^` | `x .^ y` | Elementwise power |


## Trigonometric functions
## Trigonometric Functions

| API | Example | |
|----------------|------------|-----------------------------|
Expand All @@ -25,6 +25,18 @@ In the following example `y` can be a `Real` value or another `NDArray`
| [`atan`](@ref) | `atan.(x)` | Elementwise inverse tangent |


## Hyperbolic Functions

| API | Example | |
|-----------------|-------------|----------------------------------------|
| [`sinh`](@ref) | `sinh.(x)` | Elementwise hyperbolic sine |
| [`cosh`](@ref) | `cosh.(x)` | Elementwise hyperbolic cosine |
| [`tanh`](@ref) | `tanh.(x)` | Elementwise hyperbolic tangent |
| [`asinh`](@ref) | `asinh.(x)` | Elementwise inverse hyperbolic sine |
| [`acosh`](@ref) | `acosh.(x)` | Elementwise inverse hyperbolic cosine |
| [`atanh`](@ref) | `atanh.(x)` | Elementwise inverse hyperbolic tangent |


## Reference

```@autodocs
Expand Down

0 comments on commit d921225

Please sign in to comment.