boost::math::special_functions

トップページ > 数学 >

abstract

必要なヘッダ
<boost/math/special_functions/asinh.hpp>
<boost/math/special_functions/acosh.hpp>
<boost/math/special_functions/atanh.hpp>
<boost/math/special_functions/sinc.hpp>
<boost/math/special_functions/sinhc.hpp>
出来ること
逆双曲線関数とか
リファレンス
en / jp

sample

#include <iostream>
#include <boost/math/special_functions/asinh.hpp>
#include <boost/math/special_functions/acosh.hpp>
#include <boost/math/special_functions/atanh.hpp>
using namespace std;

int main()
{
	cout << boost::math::asinh(1.0) << endl;
	cout << boost::math::acosh(1.0) << endl;
	cout << boost::math::atanh(1.0) << endl;

	return 0;
}

出力例

0.881374
0
+INF

etc

sinh などは標準ライブラリにあるので、その補完ですね。 この辺詳しくないのでよくわからんです。

presented by k.inaba (kiki .a.t. kmonos.net) under CC0