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