IT++
4.3.1
Toggle main menu visibility
itpp
base
math
trig_hyp.cpp
Go to the documentation of this file.
1
28
29
#include <
itpp/base/math/trig_hyp.h
>
30
#include <
itpp/base/itcompat.h
>
31
32
namespace
itpp
33
{
34
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); }
47
48
}
// namespace itpp
itpp::asinh
vec asinh(const vec &x)
Inverse sine hyperbolic function.
Definition
trig_hyp.cpp:36
itpp::acosh
vec acosh(const vec &x)
Inverse cosine hyperbolic function.
Definition
trig_hyp.cpp:40
itpp::atanh
vec atanh(const vec &x)
Inverse tan hyperbolic function.
Definition
trig_hyp.cpp:44
itpp::apply_function
Vec< T > apply_function(T(*f)(T), const Vec< T > &v)
Help function to call for a function: Vec<T> function(Vec<T>).
Definition
help_functions.h:124
itcompat.h
IT++ compatibility types and functions.
itpp
itpp namespace
Definition
itmex.h:37
trig_hyp.h
Trigonometric and hyperbolic functions - header file.
Generated by
1.17.0