コード例 #1
0
ファイル: std_real_concept.hpp プロジェクト: 13W/icq-desktop
inline boost::math::concepts::std_real_concept modf(boost::math::concepts::std_real_concept a, boost::math::concepts::std_real_concept* ipart)
{
   boost::math::concepts::std_real_concept_base_type ip;
   boost::math::concepts::std_real_concept_base_type result = std::modf(a.value(), &ip);
   *ipart = ip;
   return result;
}
コード例 #2
0
inline boost::math::concepts::std_real_concept modf(boost::math::concepts::std_real_concept a, boost::math::concepts::std_real_concept* ipart)
{
   long double ip;
   long double result = std::modf(a.value(), &ip);
   *ipart = ip;
   return result;
}
コード例 #3
0
ファイル: std_real_concept.hpp プロジェクト: 13W/icq-desktop
inline boost::math::concepts::std_real_concept tanh(boost::math::concepts::std_real_concept a)
{ return std::tanh(a.value()); }
コード例 #4
0
ファイル: std_real_concept.hpp プロジェクト: 13W/icq-desktop
inline boost::math::concepts::std_real_concept sqrt(boost::math::concepts::std_real_concept a)
{ return std::sqrt(a.value()); }
コード例 #5
0
ファイル: std_real_concept.hpp プロジェクト: 13W/icq-desktop
inline boost::math::concepts::std_real_concept pow(boost::math::concepts::std_real_concept a, int b)
{ return std::pow(a.value(), static_cast<long double>(b)); }
コード例 #6
0
ファイル: std_real_concept.hpp プロジェクト: 13W/icq-desktop
inline boost::math::concepts::std_real_concept pow(boost::math::concepts::std_real_concept a, int b)
{ return std::pow(a.value(), b); }
コード例 #7
0
ファイル: std_real_concept.hpp プロジェクト: 13W/icq-desktop
inline boost::math::concepts::std_real_concept log10(boost::math::concepts::std_real_concept a)
{ return std::log10(a.value()); }
コード例 #8
0
ファイル: std_real_concept.hpp プロジェクト: 13W/icq-desktop
inline boost::math::concepts::std_real_concept ldexp(boost::math::concepts::std_real_concept a, int expon)
{ return std::ldexp(a.value(), expon); }
コード例 #9
0
ファイル: std_real_concept.hpp プロジェクト: 13W/icq-desktop
inline boost::math::concepts::std_real_concept floor(boost::math::concepts::std_real_concept a)
{ return std::floor(a.value()); }
コード例 #10
0
ファイル: std_real_concept.hpp プロジェクト: 13W/icq-desktop
inline boost::math::concepts::std_real_concept fmod(boost::math::concepts::std_real_concept a, boost::math::concepts::std_real_concept b)
{ return std::fmod(a.value(), b.value()); }
コード例 #11
0
ファイル: std_real_concept.hpp プロジェクト: 13W/icq-desktop
inline boost::math::concepts::std_real_concept atan2(boost::math::concepts::std_real_concept a, boost::math::concepts::std_real_concept b)
{ return std::atan2(a.value(), b.value()); }