반응형



a 는 해당 함수의 역함수를 의미한다

asin

Header:
#include <boost/math/complex/asin.hpp>
Synopsis:
template<class T>
std::complex<T> asin(const std::complex<T>& z);

Effects: returns the inverse sine of the complex number z.

Formula: 



Header:
#include <boost/math/complex/acos.hpp>
Synopsis:
template<class T>
std::complex<T> acos(const std::complex<T>& z);

Effects: returns the inverse cosine of the complex number z.

Formula: 


Header:
#include <boost/math/complex/atan.hpp>
Synopsis:
template<class T>
std::complex<T> atan(const std::complex<T>& z);

Effects: returns the inverse tangent of the complex number z.

Formula: 



Header:
#include <boost/math/complex/asinh.hpp>
Synopsis:
template<class T>
std::complex<T> asinh(const std::complex<T>& z);

Effects: returns the inverse hyperbolic sine of the complex number z.

Formula: 




Header:
#include <boost/math/complex/acosh.hpp>
Synopsis:
template<class T>
std::complex<T> acosh(const std::complex<T>& z);

Effects: returns the inverse hyperbolic cosine of the complex number z.

Formula: 





ref : https://www.boost.org/doc/libs/1_67_0/libs/math/doc/html/inverse_complex.html



반응형

'메타프로그래밍 > Boost::' 카테고리의 다른 글

c+11 과 boost 메모리풀 연동  (0) 2015.03.19
boost :: property_tree  (0) 2014.07.04
xml_parser.hpp, json_parser.hpp  (0) 2014.06.23
boost::intrusive_ptr  (0) 2013.05.13
boost::pool  (0) 2013.05.11

+ Recent posts