|
Contents | Previous | Next | Subchapters |
| Syntax |
gammln(z) |
| See Also | gammaln , gamma , gammainc , beta , besselj , bessely , erf |
+inf
/ - t (z - 1)
gamma(z) = | e t dt
/
0
ginit
x = .1 : .1 : 3.
gtitle("Log of Gamma Function")
gplot(x, gammln(x))
returns the following plot:
gammaln as instead of gammln.
If in Mlmode you enter
clear
x = .1 : .1 : 3.;
omgtitle('Log of Gamma Function');
plot(x, gammaln(x));
O-Matrix will draw the plot above.