|
|
◆ clbeta_sub()
| void clbeta_sub |
( |
doublecomplex |
a, |
|
|
doublecomplex |
b, |
|
|
doublecomplex * |
zout |
|
) |
| |
Logarithm of beta function ln(B(a, b)) (complex argument)
- Purpose
- clbeta_sub computes the logarithm of the complex beta function ln(B(a, b)).
B(a, b) = Γ(a)Γ(b)/Γ(a + b)
clbeta_sub is the subroutine version of clbeta.
- Note
- This is a preliminary version that is not accurate enough.
- Parameters
-
| [in] | a | Argument a. (re(a) > 0) |
| [in] | b | Argument b. (re(b) > 0) |
| [out] | zout | Logarithm of the complex beta function ln(B(a, b)). |
- Error handling
- If re(a) <= 0 or re(b) <= 0, domain error (EDOM) occurs.
- Range error (ERANGE) may occur.
|