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

Return a scalar (or array of arbitrary rank of) random value(s) from the Poisson distribution.
More...

Detailed Description

Return a scalar (or array of arbitrary rank of) random value(s) from the Poisson distribution.

See the documentation of pm_distPois for more details.

Parameters
[in,out]rng: The input/output scalar that can be an object of,
  1. type rngf_type, implying the use of intrinsic Fortran uniform RNG.
  2. type xoshiro256ssw_type, implying the use of xoshiro256** uniform RNG.
(optional, default = rngf_type, implying the use of the intrinsic Fortran URNG.)
[out]rand: The output scalar or
  1. array of rank 1, or
  2. array of arbitrary rank if the rng argument is missing or set to rngf_type,
of type integer of default kind IK, containing the Poisson-distributed random value(s).
[in]lambda: The input scalar (or array of the same rank, shape, and size as other array-like arguments), of
  1. type real of kind any supported by the processor (e.g., RK, RK32, RK64, or RK128),
representing the parameter(s) of the distribution(s).
(optional. It must be present if and only if LAMBDA_LIMIT \(\leq \lambda\))
[in]logLambda: The input scalar (or array of the same rank, shape, and size as other array-like arguments), of the same type and kind as lambda, representing log(lambda).
This argument is required to ensure fast computation of many random values from the same distribution.
(optional. It must be present if and only if LAMBDA_LIMIT \(\leq \lambda\))
[in]sqrtLambda: The input scalar (or array of the same rank, shape, and size as other array-like arguments), of the same type and kind as lambda, representing sqrt(lambda).
This argument is required to ensure fast computation of many random values from the same distribution.
(optional. It must be present if and only if LAMBDA_LIMIT \(\leq \lambda\))
[in]expNegLambda: The input scalar (or array of the same rank, shape, and size as other array-like arguments), of the same type and kind as lambda, representing exp(-lambda).
(optional. It must be present if and only if \(0 < \lambda <\) LAMBDA_LIMIT)


Possible calling interfaces

! when `LAMBDA_LIMIT <= lambda`
call setPoisRand(rand, lambda, logLambda, sqrtLambda)
call setPoisRand(rand(..), lambda, logLambda, sqrtLambda)
call setPoisRand(rng, rand, lambda, logLambda, sqrtLambda)
call setPoisRand(rng, rand(:), lambda, logLambda, sqrtLambda)
! when `0. < lambda < LAMBDA_LIMIT`
call setPoisRand(rand, expNegLambda)
call setPoisRand(rand(..), expNegLambda)
call setPoisRand(rng, rand, expNegLambda)
call setPoisRand(rng, rand(:), expNegLambda)
Return a scalar (or array of arbitrary rank of) random value(s) from the Poisson distribution.
This module contains classes and procedures for computing various statistical quantities related to t...
Warning
The condition expNegLambda < 1. must hold for the corresponding input arguments.
The condition exp(-LAMBDA_LIMIT) < expNegLambda must hold for the corresponding input arguments.
The condition logLambda == log(lambda) must hold for the corresponding input arguments.
The condition sqrtLambda == sqrt(lambda) 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
getPoisRand


Example usage

1program example
2
3 use pm_kind, only: SK, IK
4 use pm_kind, only: RKG => RKS ! all real kinds are supported.
6 use pm_distPois, only: setPoisRand
9 use pm_io, only: display_type
10
11 implicit none
12
13 type(xoshiro256ssw_type) :: rng
14 integer(IK), parameter :: NP = 1000_IK
15 integer(IK) :: rand(NP)
16 real(RKG) :: lambda(NP)
17
18 type(display_type) :: disp
19 disp = display_type(file = "main.out.F90")
20
21 call setLinSpace(lambda, x1 = 0.1_RKG, x2 = 100._RKG)
22
23 call disp%skip()
24 call disp%show("lambda(1)")
25 call disp%show( lambda(1) )
26 call disp%show("call setPoisRand(rand(1), exp(-lambda(1)))")
27 call setPoisRand(rand(1), exp(-lambda(1)))
28 call disp%show("rand(1)")
29 call disp%show( rand(1) )
30 call disp%skip()
31
32 call disp%skip()
33 call disp%show("lambda(1)")
34 call disp%show( lambda(1) )
35 call disp%show("rng = xoshiro256ssw_type()")
36 rng = xoshiro256ssw_type()
37 call disp%show("call setPoisRand(rng, rand(1:2), exp(-lambda(1)))")
38 call setPoisRand(rng, rand(1:2), exp(-lambda(1)))
39 call disp%show("rand(1:2)")
40 call disp%show( rand(1:2) )
41 call disp%skip()
42
43 call disp%skip()
44 call disp%show("lambda(1)")
45 call disp%show( lambda(1) )
46 call disp%show("call setPoisRand(rand(1:2), exp(-lambda(1)))")
47 call setPoisRand(rand(1:2), exp(-lambda(1)))
48 call disp%show("rand(1:2)")
49 call disp%show( rand(1:2) )
50 call disp%skip()
51
52 call disp%skip()
53 call disp%show("lambda(NP-2:NP)")
54 call disp%show( lambda(NP-2:NP) )
55 call disp%show("call setPoisRand(rand(NP-2:NP), lambda(NP-2:NP), log(lambda(NP-2:NP)), sqrt(lambda(NP-2:NP)))")
56 call setPoisRand(rand(NP-2:NP), lambda(NP-2:NP), log(lambda(NP-2:NP)), sqrt(lambda(NP-2:NP)))
57 call disp%show("rand(NP-2:NP)")
58 call disp%show( rand(NP-2:NP) )
59 call disp%skip()
60
61 !%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
62 ! Output an example rand array for visualization.
63 !%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
64
65 block
66 use pm_io, only: getErrTableWrite
67 integer(IK) :: rand(500, 4)
68 real(RKG), parameter :: lambda(4) = [.1_RKG, 1._RKG, 4._RKG, 11._RKG]
69 call setPoisRand(rand(:, 1), exp(-lambda(1)))
70 call setPoisRand(rand(:, 2), exp(-lambda(2)))
71 call setPoisRand(rand(:, 3), exp(-lambda(3)))
72 call setPoisRand(rand(:, 4), lambda(4), log(lambda(4)), sqrt(lambda(4)))
73 if (0 /= getErrTableWrite(SK_"setPoisRand.IK.txt", rand)) error stop "Table writing failed."
74 end block
75
76end program example
Return the linSpace output argument with size(linSpace) elements of evenly-spaced values over the int...
Return the logSpace output argument with size(logSpace) elements of logarithmically-evenly-spaced val...
Generate and return the iostat code resulting from writing the input table of rank 1 or 2 to the spec...
Definition: pm_io.F90:5940
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 computing various statistical quantities related to t...
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 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
integer, parameter RKS
The single-precision real kind in Fortran mode. On most platforms, this is an 32-bit real kind.
Definition: pm_kind.F90:567
This is the derived type for declaring and generating objects of type xoshiro256ssw_type containing a...
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
2lambda(1)
3+0.100000001
4call setPoisRand(rand(1), exp(-lambda(1)))
5rand(1)
6+0
7
8
9lambda(1)
10+0.100000001
12call setPoisRand(rng, rand(1:2), exp(-lambda(1)))
13rand(1:2)
14+0, +0
15
16
17lambda(1)
18+0.100000001
19call setPoisRand(rand(1:2), exp(-lambda(1)))
20rand(1:2)
21+0, +0
22
23
24lambda(NP-2:NP)
25+99.8000031, +99.9000015, +100.000000
26call setPoisRand(rand(NP-2:NP), lambda(NP-2:NP), log(lambda(NP-2:NP)), sqrt(lambda(NP-2:NP)))
27rand(NP-2:NP)
28+89, +109, +75
29
30

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" : "Poisson Random Value ( real/imaginary components )"
17 , "IK" : "Poisson Random Value ( integer-valued )"
18 , "RK" : "Poisson Random Value ( real-valued )"
19 }
20legends = [ r"$\lambda = 0.1$"
21 , r"$\lambda = 1.0$"
22 , r"$\lambda = 4.0$"
23 , r"$\lambda = 11.$"
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 = ",", header = None)
33
34 fig = plt.figure(figsize = 1.25 * np.array([6.4, 4.8]), dpi = 200)
35 ax = plt.subplot()
36
37 for j in range(len(df.values[0,:])):
38 if kind == "CK":
39 plt.hist( df.values[:,j]
40 , histtype = "stepfilled"
41 , alpha = 0.5
42 , bins = 75
43 )
44 else:
45 plt.hist( df.values[:,j]
46 , histtype = "stepfilled"
47 , alpha = 0.5
48 , bins = 75
49 )
50 ax.legend ( legends
51 , fontsize = fontsize
52 )
53 plt.xticks(fontsize = fontsize - 2)
54 plt.yticks(fontsize = fontsize - 2)
55 ax.set_xlabel(xlab[kind], fontsize = 17)
56 ax.set_ylabel("Count", fontsize = 17)
57 ax.set_title("Histograms of {} Poisson random values".format(len(df.values[:, 0])), fontsize = 17)
58
59 plt.grid(visible = True, which = "both", axis = "both", color = "0.85", linestyle = "-")
60 ax.tick_params(axis = "y", which = "minor")
61 ax.tick_params(axis = "x", which = "minor")
62
63 plt.savefig(fileList[0].replace(".txt",".png"))
64
65 elif len(fileList) > 1:
66
67 sys.exit("Ambiguous file list exists.")

Visualization of the example output
Test:
test_pm_distPois


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 976 of file pm_distPois.F90.


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