| Author |
Comment/Response |
Henry Lamb
|
10/24/03 01:59am
Integrate has difficulty producing a closed-form solution, but you can still get a numerical solution with NIntegrate.
For instance,
a = 1; b = 1; d = 1; m = 0;
NIntegrate[
x*Exp[b*(x - m)/a]*Abs[Gamma[d + I*(x - m)/a]]^2, {x, -Infinity, Infinity}]
yields the result
1.11424 + 0. I
URL: , |
|