Files
mql5-skills/skills/mql5/references/docs/34-standardlibrary/1296-standardlibrary-mathematics-stat-mathsubfunctions-statmathhypergeometric2f2.md
T
2026-06-23 21:47:51 +08:00

41 lines
870 B
Markdown
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# MathHypergeometric2F2
Calculates the value of the Hypergeometric_2F2 (a, b, c, d, z) function using the Taylor's method.
```
double  MathHypergeometric2F2(
   const double  a,      // the first parameter of the function
   const double  b,      // the second parameter of the function
   const double  c,      // the third parameter of the function
   const double  d,      // the fourth parameter of the function
   const double  z       // the fifth parameter of the function
   )
```
Parameters
a
[in] The first parameter of the function.
b
[in] The second parameter of the function.
c
[in] The third parameter of the function.
d
[in] The fourth parameter of the function.
z
[in] The fifth parameter of the function.
Return Value
Value of the function.