DriveHQ Start Menu
Cloud Drive Mapping
Folder Sync
Cloud Backup
True Drop Box
FTP/SFTP Hosting
Group Account
DriveHQ Start Menu
Online File Server
My Storage
|
Manage Shares
|
Publishes
|
Drop Boxes
|
Group Account
WebDAV Drive Mapping
Cloud Drive Home
|
WebDAV Guide
|
Drive Mapping Tool
|
Drive Mapping URL
Complete Data Backup
Backup Guide
|
Online Backup Tool
|
Cloud-to-Cloud Backup
FTP, Email & Web Service
FTP Home
|
FTP Hosting FAQ
|
Email Hosting
|
EmailManager
|
Web Hosting
Help & Resources
About
|
Enterprise Service
|
Partnership
|
Comparisons
|
Support
Quick Links
Security and Privacy
Download Software
Service Manual
Use Cases
Group Account
Online Help
Blog
Contact
Cloud Surveillance
Sign Up
Login
Features
Business Features
Online File Server
FTP Hosting
Cloud Drive Mapping
Cloud File Backup
Email Backup & Hosting
Cloud File Sharing
Folder Synchronization
Group Management
True Drop Box
Full-text Search
AD Integration/SSO
Mobile Access
IP Camera & DVR Solution
More...
Personal Features
Personal Cloud Drive
Backup All Devices
Mobile APPs
Personal Web Hosting
Sub-Account (for Kids)
Home/PC/Kids Monitoring
More...
Software
DriveHQ Drive Mapping Tool
DriveHQ FileManager
DriveHQ Online Backup
DriveHQ Mobile Apps
Pricing
Business Plans & Pricing
Personal Plans & Pricing
Price Comparison with Others
Feature Comparison with Others
Install Mobile App
Sign up
Creating account...
Invalid character in username! Only 0-9, a-z, A-Z, _, -, . allowed.
Username is required!
Invalid email address!
E-mail is required!
Password is required!
Password is invalid!
Password and confirmation do not match.
Confirm password is required!
I accept
Membership Agreement
Please read the Membership Agreement and check "I accept"!
Free Quick Sign-up
Sign-up Page
Log in
Signing in...
Username or e-mail address is required!
Password is required!
Keep me logged in
Quick Login
Forgot Password
Up
Upload
Download
Share
Publish
New Folder
New File
Copy
Cut
Delete
Paste
Rate
Upgrade
Rotate
Effect
Edit
Slide
History
// math_fwd.hpp // TODO revise completely for new distribution classes. // Copyright Paul A. Bristow 2006. // Copyright John Maddock 2006. // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt // or copy at http://www.boost.org/LICENSE_1_0.txt) // Omnibus list of forward declarations of math special functions. // IT = Integer type. // RT = Real type (built-in floating-point types, float, double, long double) & User Defined Types // AT = Integer or Real type #ifndef BOOST_MATH_SPECIAL_MATH_FWD_HPP #define BOOST_MATH_SPECIAL_MATH_FWD_HPP #include
// for argument promotion. #include
#include
#include
#define BOOST_NO_MACRO_EXPAND /**/ namespace boost { namespace math { // Math functions (in roughly alphabetic order). // Beta functions. template
typename tools::promote_args
::type beta(RT1 a, RT2 b); // Beta function (2 arguments). template
typename tools::promote_args
::type beta(RT1 a, RT2 b, A x); // Beta function (3 arguments). template
typename tools::promote_args
::type beta(RT1 a, RT2 b, RT3 x, const Policy& pol); // Beta function (3 arguments). template
typename tools::promote_args
::type betac(RT1 a, RT2 b, RT3 x); template
typename tools::promote_args
::type betac(RT1 a, RT2 b, RT3 x, const Policy& pol); template
typename tools::promote_args
::type ibeta(RT1 a, RT2 b, RT3 x); // Incomplete beta function. template
typename tools::promote_args
::type ibeta(RT1 a, RT2 b, RT3 x, const Policy& pol); // Incomplete beta function. template
typename tools::promote_args
::type ibetac(RT1 a, RT2 b, RT3 x); // Incomplete beta complement function. template
typename tools::promote_args
::type ibetac(RT1 a, RT2 b, RT3 x, const Policy& pol); // Incomplete beta complement function. template
typename tools::promote_args
::type ibeta_inv(T1 a, T2 b, T3 p, T4* py); template
typename tools::promote_args
::type ibeta_inv(T1 a, T2 b, T3 p, T4* py, const Policy& pol); template
typename tools::promote_args
::type ibeta_inv(RT1 a, RT2 b, RT3 p); // Incomplete beta inverse function. template
typename tools::promote_args
::type ibeta_inv(RT1 a, RT2 b, RT3 p, const Policy&); // Incomplete beta inverse function. template
typename tools::promote_args
::type ibeta_inva(RT1 a, RT2 b, RT3 p); // Incomplete beta inverse function. template
typename tools::promote_args
::type ibeta_inva(RT1 a, RT2 b, RT3 p, const Policy&); // Incomplete beta inverse function. template
typename tools::promote_args
::type ibeta_invb(RT1 a, RT2 b, RT3 p); // Incomplete beta inverse function. template
typename tools::promote_args
::type ibeta_invb(RT1 a, RT2 b, RT3 p, const Policy&); // Incomplete beta inverse function. template
typename tools::promote_args
::type ibetac_inv(T1 a, T2 b, T3 q, T4* py); template
typename tools::promote_args
::type ibetac_inv(T1 a, T2 b, T3 q, T4* py, const Policy& pol); template
typename tools::promote_args
::type ibetac_inv(RT1 a, RT2 b, RT3 q); // Incomplete beta complement inverse function. template
typename tools::promote_args
::type ibetac_inv(RT1 a, RT2 b, RT3 q, const Policy&); // Incomplete beta complement inverse function. template
typename tools::promote_args
::type ibetac_inva(RT1 a, RT2 b, RT3 q); // Incomplete beta complement inverse function. template
typename tools::promote_args
::type ibetac_inva(RT1 a, RT2 b, RT3 q, const Policy&); // Incomplete beta complement inverse function. template
typename tools::promote_args
::type ibetac_invb(RT1 a, RT2 b, RT3 q); // Incomplete beta complement inverse function. template
typename tools::promote_args
::type ibetac_invb(RT1 a, RT2 b, RT3 q, const Policy&); // Incomplete beta complement inverse function. template
typename tools::promote_args
::type ibeta_derivative(RT1 a, RT2 b, RT3 x); // derivative of incomplete beta template
typename tools::promote_args
::type ibeta_derivative(RT1 a, RT2 b, RT3 x, const Policy& pol); // derivative of incomplete beta // erf & erfc error functions. template
// Error function. typename tools::promote_args
::type erf(RT z); template
// Error function. typename tools::promote_args
::type erf(RT z, const Policy&); template
// Error function complement. typename tools::promote_args
::type erfc(RT z); template
// Error function complement. typename tools::promote_args
::type erfc(RT z, const Policy&); template
// Error function inverse. typename tools::promote_args
::type erf_inv(RT z); template
// Error function inverse. typename tools::promote_args
::type erf_inv(RT z, const Policy& pol); template
// Error function complement inverse. typename tools::promote_args
::type erfc_inv(RT z); template
// Error function complement inverse. typename tools::promote_args
::type erfc_inv(RT z, const Policy& pol); // Polynomials: template
typename tools::promote_args
::type legendre_next(unsigned l, T1 x, T2 Pl, T3 Plm1); template
typename tools::promote_args
::type legendre_p(int l, T x); template
typename tools::promote_args
::type legendre_p(int l, T x, const Policy& pol); template
typename tools::promote_args
::type legendre_q(unsigned l, T x); template
typename tools::promote_args
::type legendre_q(unsigned l, T x, const Policy& pol); template
typename tools::promote_args
::type legendre_next(unsigned l, unsigned m, T1 x, T2 Pl, T3 Plm1); template
typename tools::promote_args
::type legendre_p(int l, int m, T x); template
typename tools::promote_args
::type legendre_p(int l, int m, T x, const Policy& pol); template
typename tools::promote_args
::type laguerre_next(unsigned n, T1 x, T2 Ln, T3 Lnm1); template
typename tools::promote_args
::type laguerre_next(unsigned n, unsigned l, T1 x, T2 Pl, T3 Plm1); template
typename tools::promote_args
::type laguerre(unsigned n, T x); template
typename tools::promote_args
::type laguerre(unsigned n, unsigned m, T x, const Policy& pol); template
struct laguerre_result { typedef typename mpl::if_< policies::is_policy
, typename tools::promote_args
::type, typename tools::promote_args
::type >::type type; }; template
typename laguerre_result
::type laguerre(unsigned n, T1 m, T2 x); template
typename tools::promote_args
::type hermite(unsigned n, T x); template
typename tools::promote_args
::type hermite(unsigned n, T x, const Policy& pol); template
typename tools::promote_args
::type hermite_next(unsigned n, T1 x, T2 Hn, T3 Hnm1); template
std::complex
::type> spherical_harmonic(unsigned n, int m, T1 theta, T2 phi); template
std::complex
::type> spherical_harmonic(unsigned n, int m, T1 theta, T2 phi, const Policy& pol); template
typename tools::promote_args
::type spherical_harmonic_r(unsigned n, int m, T1 theta, T2 phi); template
typename tools::promote_args
::type spherical_harmonic_r(unsigned n, int m, T1 theta, T2 phi, const Policy& pol); template
typename tools::promote_args
::type spherical_harmonic_i(unsigned n, int m, T1 theta, T2 phi); template
typename tools::promote_args
::type spherical_harmonic_i(unsigned n, int m, T1 theta, T2 phi, const Policy& pol); // Elliptic integrals: template
typename tools::promote_args
::type ellint_rf(T1 x, T2 y, T3 z); template
typename tools::promote_args
::type ellint_rf(T1 x, T2 y, T3 z, const Policy& pol); template
typename tools::promote_args
::type ellint_rd(T1 x, T2 y, T3 z); template
typename tools::promote_args
::type ellint_rd(T1 x, T2 y, T3 z, const Policy& pol); template
typename tools::promote_args
::type ellint_rc(T1 x, T2 y); template
typename tools::promote_args
::type ellint_rc(T1 x, T2 y, const Policy& pol); template
typename tools::promote_args
::type ellint_rj(T1 x, T2 y, T3 z, T4 p); template
typename tools::promote_args
::type ellint_rj(T1 x, T2 y, T3 z, T4 p, const Policy& pol); template
typename tools::promote_args
::type ellint_2(T k); template
typename tools::promote_args
::type ellint_2(T1 k, T2 phi); template
typename tools::promote_args
::type ellint_2(T1 k, T2 phi, const Policy& pol); template
typename tools::promote_args
::type ellint_1(T k); template
typename tools::promote_args
::type ellint_1(T1 k, T2 phi); template
typename tools::promote_args
::type ellint_1(T1 k, T2 phi, const Policy& pol); template
typename tools::promote_args
::type ellint_3(T1 k, T2 v, T3 phi); template
typename tools::promote_args
::type ellint_3(T1 k, T2 v, T3 phi, const Policy& pol); template
typename tools::promote_args
::type ellint_3(T1 k, T2 v); // Factorial functions. // Note: not for integral types, at present. template
struct max_factorial; template
RT factorial(unsigned int); template
RT factorial(unsigned int, const Policy& pol); template
RT unchecked_factorial(unsigned int BOOST_MATH_APPEND_EXPLICIT_TEMPLATE_TYPE(RT)); template
RT double_factorial(unsigned i); template
RT double_factorial(unsigned i, const Policy& pol); template
typename tools::promote_args
::type falling_factorial(RT x, unsigned n); template
typename tools::promote_args
::type falling_factorial(RT x, unsigned n, const Policy& pol); template
typename tools::promote_args
::type rising_factorial(RT x, int n); template
typename tools::promote_args
::type rising_factorial(RT x, int n, const Policy& pol); // Gamma functions. template
typename tools::promote_args
::type tgamma(RT z); template
typename tools::promote_args
::type tgamma1pm1(RT z); template
typename tools::promote_args
::type tgamma1pm1(RT z, const Policy& pol); template
typename tools::promote_args
::type tgamma(RT1 a, RT2 z); template
typename tools::promote_args
::type tgamma(RT1 a, RT2 z, const Policy& pol); template
typename tools::promote_args
::type lgamma(RT z, int* sign); template
typename tools::promote_args
::type lgamma(RT z, int* sign, const Policy& pol); template
typename tools::promote_args
::type lgamma(RT x); template
typename tools::promote_args
::type lgamma(RT x, const Policy& pol); template
typename tools::promote_args
::type tgamma_lower(RT1 a, RT2 z); template
typename tools::promote_args
::type tgamma_lower(RT1 a, RT2 z, const Policy&); template
typename tools::promote_args
::type gamma_q(RT1 a, RT2 z); template
typename tools::promote_args
::type gamma_q(RT1 a, RT2 z, const Policy&); template
typename tools::promote_args
::type gamma_p(RT1 a, RT2 z); template
typename tools::promote_args
::type gamma_p(RT1 a, RT2 z, const Policy&); template
typename tools::promote_args
::type tgamma_delta_ratio(T1 z, T2 delta); template
typename tools::promote_args
::type tgamma_delta_ratio(T1 z, T2 delta, const Policy&); template
typename tools::promote_args
::type tgamma_ratio(T1 a, T2 b); template
typename tools::promote_args
::type tgamma_ratio(T1 a, T2 b, const Policy&); template
typename tools::promote_args
::type gamma_p_derivative(T1 a, T2 x); template
typename tools::promote_args
::type gamma_p_derivative(T1 a, T2 x, const Policy&); // gamma inverse. template
typename tools::promote_args
::type gamma_p_inv(T1 a, T2 p); template
typename tools::promote_args
::type gamma_p_inva(T1 a, T2 p, const Policy&); template
typename tools::promote_args
::type gamma_p_inva(T1 a, T2 p); template
typename tools::promote_args
::type gamma_p_inv(T1 a, T2 p, const Policy&); template
typename tools::promote_args
::type gamma_q_inv(T1 a, T2 q); template
typename tools::promote_args
::type gamma_q_inv(T1 a, T2 q, const Policy&); template
typename tools::promote_args
::type gamma_q_inva(T1 a, T2 q); template
typename tools::promote_args
::type gamma_q_inva(T1 a, T2 q, const Policy&); // digamma: template
typename tools::promote_args
::type digamma(T x); template
typename tools::promote_args
::type digamma(T x, const Policy&); // Hypotenuse function sqrt(x ^ 2 + y ^ 2). template
typename tools::promote_args
::type hypot(T1 x, T2 y); template
typename tools::promote_args
::type hypot(T1 x, T2 y, const Policy&); // cbrt - cube root. template
typename tools::promote_args
::type cbrt(RT z); template
typename tools::promote_args
::type cbrt(RT z, const Policy&); // log1p is log(x + 1) template
typename tools::promote_args
::type log1p(T); template
typename tools::promote_args
::type log1p(T, const Policy&); // log1pmx is log(x + 1) - x template
typename tools::promote_args