ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
pm_distGamma::setGammaCDF Interface Reference

Return the Cumulative Distribution Function (CDF) of the Gamma distribution for an input x within the support of the distribution \(x \in (0,+\infty)\). More...

Detailed Description

Return the Cumulative Distribution Function (CDF) of the Gamma distribution for an input x within the support of the distribution \(x \in (0,+\infty)\).

See the documentation of pm_distGamma for more information on the Gamma CDF.

Parameters
[out]cdf: The output scalar or array of the same shape as any input array-like argument, of the same type and kind the input argument x, containing the CDF of the distribution at the specified x.
[in]x: The input scalar or array of the same shape as other array like arguments, of type real of kind any supported by the processor (e.g., RK, RK32, RK64, or RK128), containing the values at which the CDF must be computed.
[in]kappa: The input scalar or array of the same shape as other array-like arguments, of the same type and kind as x, containing the shape parameter of the distribution.
(optional, default = 1.. It must be present if invSigma is also present.)
[in]invSigma: The input scalar or array of the same shape as other array-like arguments, of the same type and kind as x, containing the rate (inverse scale) parameter of the distribution.
(optional, default = 1.. It can be present only if all previous arguments are also present.)
[out]info: The output scalar of type integer of default kind IK.
On output, it is set to positive the number of iterations taken for the series representation of the Gamma function to converge.
If the algorithm fails to converge, then info is set to the negative of the number of iterations taken by the algorithm.
An negative output value signifies the lack of convergence and failure to compute the CDF.
This is likely to happen if the input value for kappa is too large.


Possible calling interfaces

call setGammaCDF(cdf, x, info)
call setGammaCDF(cdf, x, kappa, invSigma, info)
Return the Cumulative Distribution Function (CDF) of the Gamma distribution for an input x within the...
This module contains classes and procedures for computing various statistical quantities related to t...
Warning
The condition 0 < x must hold for the corresponding input arguments.
The condition 0 < kappa must hold for the corresponding input arguments.
The condition 0 < invSigma must hold for the corresponding input arguments.
These conditions are verified only if the library is built with the preprocessor macro CHECK_ENABLED=1.
The pure procedure(s) documented herein become impure when the ParaMonte library is compiled with preprocessor macro CHECK_ENABLED=1.
By default, these procedures are pure in release build and impure in debug and testing builds.
Remarks
The procedures under discussion are elemental.
See also
getGammaCDF


Example usage

1program example
2
3 use pm_kind, only: SK, IK, LK
7 use pm_io, only: display_type
8
9 implicit none
10
11 integer(IK), parameter :: NP = 999_IK
12 real :: point(NP), CDF(NP)
13 integer(IK) :: info(NP)
14
15 type(display_type) :: disp
16 disp = display_type(file = "main.out.F90")
17
18 call setLogSpace(point, logx1 = -5., logx2 = 5.)
19
20 call disp%skip()
21 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
22 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
23 call disp%show("! Compute the Cumulative Distribution Function (CDF) of the Gamma distribution.")
24 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
25 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
26 call disp%skip()
27
28 call disp%skip()
29 call disp%show("point(1)")
30 call disp%show( point(1) )
31 call disp%show("call setGammaCDF(CDF(1), point(1), info(1))")
32 call setGammaCDF(CDF(1), point(1), info(1))
33 call disp%show("if (info(1) < 0) error stop 'setGammaCDF() failed.'")
34 if (info(1) < 0) error stop 'setGammaCDF() failed.'
35 call disp%show("CDF(1)")
36 call disp%show( CDF(1) )
37 call disp%skip()
38
39 call disp%skip()
40 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
41 call disp%show("! Accelerate the runtime performance for repeated calls when `kappa` and `invSigma` are fixed.")
42 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
43 call disp%skip()
44
45 call disp%skip()
46 call disp%show("point(1:NP:NP/4)")
47 call disp%show( point(1:NP:NP/4) )
48 call disp%show("call setGammaCDF(CDF(1:NP:NP/4), point(1:NP:NP/4), kappa = 2., invSigma = 2., info = info(1:NP:NP/4))")
49 call setGammaCDF(CDF(1:NP:NP/4), point(1:NP:NP/4), kappa = 2., invSigma = 2., info = info(1:NP:NP/4))
50 call disp%show("if (any(info(1:NP:NP/4) < 0)) error stop 'setGammaCDF() failed.'")
51 if (any(info(1:NP:NP/4) < 0)) error stop 'setGammaCDF() failed.'
52 call disp%show("CDF(1:NP:NP/4)")
53 call disp%show( CDF(1:NP:NP/4) )
54 call disp%skip()
55
56 call disp%skip()
57 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
58 call disp%show("! A vector of CDF at different points with the same CDF parameters.")
59 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
60 call disp%skip()
61
62 call disp%skip()
63 call disp%show("point(1:NP:NP/4)")
64 call disp%show( point(1:NP:NP/4) )
65 call disp%show("call setGammaCDF(CDF(1:NP:NP/4), point(1:NP:NP/4), kappa = 0.5, invSigma = 5., info = info(1:NP:NP/4))")
66 call setGammaCDF(CDF(1:NP:NP/4), point(1:NP:NP/4), kappa = 0.5, invSigma = 5., info = info(1:NP:NP/4))
67 call disp%show("if (any(info(1:NP:NP/4) < 0)) error stop 'setGammaCDF() failed.'")
68 if (any(info(1:NP:NP/4) < 0)) error stop 'setGammaCDF() failed.'
69 call disp%show("CDF(1:NP:NP/4)")
70 call disp%show( CDF(1:NP:NP/4) )
71 call disp%skip()
72
73 call disp%skip()
74 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
75 call disp%show("! A vector of CDF at the same point but with different CDF parameters.")
76 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
77 call disp%skip()
78
79 call disp%skip()
80 call disp%show("point(NP/4)")
81 call disp%show( point(NP/4) )
82 call disp%show("call setGammaCDF(CDF(1:NP:NP/4), point(NP/4), kappa = getLinSpace(0.5, 5., 5), invSigma = getLinSpace(5., .5, 5), info = info(1:NP:NP/4))")
83 call setGammaCDF(CDF(1:NP:NP/4), point(NP/4), kappa = getLinSpace(0.5, 5., 5), invSigma = getLinSpace(5., .5, 5), info = info(1:NP:NP/4))
84 call disp%show("if (any(info(1:NP:NP/4) < 0)) error stop 'setGammaCDF() failed.'")
85 if (any(info(1:NP:NP/4) < 0)) error stop 'setGammaCDF() failed.'
86 call disp%show("CDF(1:NP:NP/4)")
87 call disp%show( CDF(1:NP:NP/4) )
88 call disp%skip()
89
90 call disp%skip()
91 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
92 call disp%show("! A vector of CDF at different points with different CDF parameters.")
93 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
94 call disp%skip()
95
96 call disp%skip()
97 call disp%show("point(1:NP:NP/4)")
98 call disp%show( point(1:NP:NP/4) )
99 call disp%show("call setGammaCDF(CDF(1:NP:NP/4), point(1:NP:NP/4), kappa = getLinSpace(0.5, 5., 5), invSigma = getLinSpace(5., .5, 5), info = info(1:NP:NP/4))")
100 call setGammaCDF(CDF(1:NP:NP/4), point(1:NP:NP/4), kappa = getLinSpace(0.5, 5., 5), invSigma = getLinSpace(5., .5, 5), info = info(1:NP:NP/4))
101 call disp%show("if (any(info(1:NP:NP/4) < 0)) error stop 'setGammaCDF() failed.'")
102 if (any(info(1:NP:NP/4) < 0)) error stop 'setGammaCDF() failed.'
103 call disp%show("CDF(1:NP:NP/4)")
104 call disp%show( CDF(1:NP:NP/4) )
105 call disp%skip()
106
107 !%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
108 ! Output an example array for visualization.
109 !%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
110
111 block
112 integer(IK) :: fileUnit, i
113 real, parameter :: kappa(*) = [0.5, 1.0, 2.0, 7.5]
114 real, parameter :: invSigma(*) = [1.0, 0.5, 0.5, 1.0]
115 open(newunit = fileUnit, file = "setGammaCDF.RK.txt")
116 do i = 1, NP
117 call setGammaCDF(CDF(1:4), point(i), kappa, invSigma, info(1:4))
118 if (any(info(1:4) < 0)) error stop 'setGammaCDF() failed.'
119 write(fileUnit,"(5(g0,:,' '))") point(i), CDF(1:4)
120 end do
121 close(fileUnit)
122 end block
123
124end program example
Generate count evenly spaced points over the interval [x1, x2] if x1 < x2, or [x2,...
Return the logSpace output argument with size(logSpace) elements of logarithmically-evenly-spaced val...
This is a generic method of the derived type display_type with pass attribute.
Definition: pm_io.F90:11726
This is a generic method of the derived type display_type with pass attribute.
Definition: pm_io.F90:11508
This module contains procedures and generic interfaces for generating arrays with linear or logarithm...
This module contains classes and procedures for input/output (IO) or generic display operations on st...
Definition: pm_io.F90:252
type(display_type) disp
This is a scalar module variable an object of type display_type for general display.
Definition: pm_io.F90:11393
This module defines the relevant Fortran kind type-parameters frequently used in the ParaMonte librar...
Definition: pm_kind.F90:268
integer, parameter LK
The default logical kind in the ParaMonte library: kind(.true.) in Fortran, kind(....
Definition: pm_kind.F90:541
integer, parameter IK
The default integer kind in the ParaMonte library: int32 in Fortran, c_int32_t in C-Fortran Interoper...
Definition: pm_kind.F90:540
integer, parameter SK
The default character kind in the ParaMonte library: kind("a") in Fortran, c_char in C-Fortran Intero...
Definition: pm_kind.F90:539
Generate and return an object of type display_type.
Definition: pm_io.F90:10282

Example Unix compile command via Intel ifort compiler
1#!/usr/bin/env sh
2rm main.exe
3ifort -fpp -standard-semantics -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
4./main.exe

Example Windows Batch compile command via Intel ifort compiler
1del main.exe
2set PATH=..\..\..\lib;%PATH%
3ifort /fpp /standard-semantics /O3 /I:..\..\..\include main.F90 ..\..\..\lib\libparamonte*.lib /exe:main.exe
4main.exe

Example Unix / MinGW compile command via GNU gfortran compiler
1#!/usr/bin/env sh
2rm main.exe
3gfortran -cpp -ffree-line-length-none -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
4./main.exe

Example output
1
2!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4! Compute the Cumulative Distribution Function (CDF) of the Gamma distribution.
5!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7
8
9point(1)
10+0.673794653E-2
11call setGammaCDF(CDF(1), point(1), info(1))
12if (info(1) < 0) error stop 'setGammaCDF() failed.'
13CDF(1)
14+0.671529910E-2
15
16
17!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
18! Accelerate the runtime performance for repeated calls when `kappa` and `invSigma` are fixed.
19!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
20
21
22point(1:NP:NP/4)
23+0.673794653E-2, +0.816747844E-1, +0.990029752, +12.0007629, +145.468491
24call setGammaCDF(CDF(1:NP:NP/4), point(1:NP:NP/4), kappa = 2., invSigma = 2., info = info(1:NP:NP/4))
25if (any(info(1:NP:NP/4) < 0)) error stop 'setGammaCDF() failed.'
26CDF(1:NP:NP/4)
27+0.899882580E-4, +0.119738970E-1, +0.588569999, +1.00000000, +1.00000000
28
29
30!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31! A vector of CDF at different points with the same CDF parameters.
32!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
33
34
35point(1:NP:NP/4)
36+0.673794653E-2, +0.816747844E-1, +0.990029752, +12.0007629, +145.468491
37call setGammaCDF(CDF(1:NP:NP/4), point(1:NP:NP/4), kappa = 0.5, invSigma = 5., info = info(1:NP:NP/4))
38if (any(info(1:NP:NP/4) < 0)) error stop 'setGammaCDF() failed.'
39CDF(1:NP:NP/4)
40+0.204808801, +0.633867264, +0.998347461, +1.00000000, +1.00000000
41
42
43!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
44! A vector of CDF at the same point but with different CDF parameters.
45!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
46
47
48point(NP/4)
49+0.808604807E-1
50call setGammaCDF(CDF(1:NP:NP/4), point(NP/4), kappa = getLinSpace(0.5, 5., 5), invSigma = getLinSpace(5., .5, 5), info = info(1:NP:NP/4))
51if (any(info(1:NP:NP/4) < 0)) error stop 'setGammaCDF() failed.'
52CDF(1:NP:NP/4)
53+0.631466985, +0.860468596E-1, +0.307858689E-2, +0.173809440E-4, +0.870413130E-9
54
55
56!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
57! A vector of CDF at different points with different CDF parameters.
58!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
59
60
61point(1:NP:NP/4)
62+0.673794653E-2, +0.816747844E-1, +0.990029752, +12.0007629, +145.468491
63call setGammaCDF(CDF(1:NP:NP/4), point(1:NP:NP/4), kappa = getLinSpace(0.5, 5., 5), invSigma = getLinSpace(5., .5, 5), info = info(1:NP:NP/4))
64if (any(info(1:NP:NP/4) < 0)) error stop 'setGammaCDF() failed.'
65CDF(1:NP:NP/4)
66+0.204808801, +0.872944593E-1, +0.573785663, +0.999996066, +1.00000000
67
68

Postprocessing of the example output
1#!/usr/bin/env python
2
3import matplotlib.pyplot as plt
4import pandas as pd
5import numpy as np
6import glob
7import sys
8
9linewidth = 2
10fontsize = 17
11
12marker ={ "CK" : "-"
13 , "IK" : "."
14 , "RK" : "-"
15 }
16xlab = { "CK" : "X ( real/imaginary components )"
17 , "IK" : "X ( integer-valued )"
18 , "RK" : "X ( real-valued )"
19 }
20legends = [ r"$\kappa = 0.5,~\sigma = 1.0$"
21 , r"$\kappa = 1.0,~\sigma = 2.0$"
22 , r"$\kappa = 2.0,~\sigma = 2.0$"
23 , r"$\kappa = 7.5,~\sigma = 1.0$"
24 ]
25
26for kind in ["IK", "CK", "RK"]:
27
28 pattern = "*." + kind + ".txt"
29 fileList = glob.glob(pattern)
30 if len(fileList) == 1:
31
32 df = pd.read_csv(fileList[0], delimiter = " ")
33
34 fig = plt.figure(figsize = 1.25 * np.array([6.4, 4.8]), dpi = 200)
35 ax = plt.subplot()
36
37 if kind == "CK":
38 plt.plot( df.values[:, 0]
39 , df.values[:,1:5]
40 , marker[kind]
41 , linewidth = linewidth
42 #, color = "r"
43 )
44 plt.plot( df.values[:,1]
45 , df.values[:,1:5]
46 , marker[kind]
47 , linewidth = linewidth
48 #, color = "blue"
49 )
50 else:
51 plt.plot( df.values[:, 0]
52 , df.values[:,1:5]
53 , marker[kind]
54 , linewidth = linewidth
55 #, color = "r"
56 )
57 ax.legend ( legends
58 , fontsize = fontsize
59 )
60
61 plt.xticks(fontsize = fontsize - 2)
62 plt.yticks(fontsize = fontsize - 2)
63 ax.set_xlabel(xlab[kind], fontsize = 17)
64 ax.set_ylabel("Cumulative Distribution Function (CDF)", fontsize = 17)
65 ax.set_xlim([0, 20.])
66
67 plt.grid(visible = True, which = "both", axis = "both", color = "0.85", linestyle = "-")
68 ax.tick_params(axis = "y", which = "minor")
69 ax.tick_params(axis = "x", which = "minor")
70
71 plt.savefig(fileList[0].replace(".txt",".png"))
72
73 elif len(fileList) > 1:
74
75 sys.exit("Ambiguous file list exists.")

Visualization of the example output
Test:
test_pm_distGamma
Todo:
Low Priority: This generic interface can be extended to complex arguments.


Final Remarks


If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.

  1. If you use any parts or concepts from this library to any extent, please acknowledge the usage by citing the relevant publications of the ParaMonte library.
  2. If you regenerate any parts/ideas from this library in a programming environment other than those currently supported by this ParaMonte library (i.e., other than C, C++, Fortran, MATLAB, Python, R), please also ask the end users to cite this original ParaMonte library.

This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.

Author:
Amir Shahmoradi, Oct 16, 2009, 11:14 AM, Michigan

Definition at line 917 of file pm_distGamma.F90.


The documentation for this interface was generated from the following file: