36vec
asinh(
const vec &x) {
return apply_function<double>(
::asinh, x); }
38mat
asinh(
const mat &x) {
return apply_function<double>(
::asinh, x); }
40vec
acosh(
const vec &x) {
return apply_function<double>(
::acosh, x); }
42mat
acosh(
const mat &x) {
return apply_function<double>(
::acosh, x); }
44vec
atanh(
const vec &x) {
return apply_function<double>(
::atanh, x); }
46mat
atanh(
const mat &x) {
return apply_function<double>(
::atanh, x); }
vec asinh(const vec &x)
Inverse sine hyperbolic function.
vec acosh(const vec &x)
Inverse cosine hyperbolic function.
vec atanh(const vec &x)
Inverse tan hyperbolic function.
IT++ compatibility types and functions.
Trigonometric and hyperbolic functions - header file.