From d92122546f02703e99364e09c4448b990b42b0b3 Mon Sep 17 00:00:00 2001 From: Iblis Lin Date: Sat, 16 Dec 2017 23:39:39 +0800 Subject: [PATCH] doc/ndarray: add ref table for hyperbolic function (#382) --- docs/src/api/ndarray.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/src/api/ndarray.md b/docs/src/api/ndarray.md index 660bd95fc..9582ff24a 100644 --- a/docs/src/api/ndarray.md +++ b/docs/src/api/ndarray.md @@ -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 | | |----------------|------------|-----------------------------| @@ -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