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

Generate and return a random vector from the \(\ndim\)-dimensional MultiVariate Uniform Parallelepiped (MVUP) Distribution.
More...

Detailed Description

Generate and return a random vector from the \(\ndim\)-dimensional MultiVariate Uniform Parallelepiped (MVUP) Distribution.

See the documentation of pm_distUnifPar for details of the definition of the PDF.

Parameters
[in]lb: The input scalar or contiguous vector of the same type and kind as the output argument rand.
  1. If ub is a scalar, then lb must be a scalar representing the lower bound of the ndim-dimensional hyper-cube support of the distribution.
  2. If ub is a vector, then lb must be a vector representing the lower bound of the ndim-dimensional hyper-rectangle support of the distribution.
  3. If ub is a matrix, then lb must be a vector representing the origin of the coordinate system with respect to which the ndim-dimensional hyper-parallelepiped support of the distribution is determined.
(optional. default = 0)
[in]ub: The input scalar or contiguous vector/matrix of the same type and kind as the output argument rand.
  1. If ub is a scalar, it represents the upper bound of the ndim-dimensional hyper-cube support of the distribution.
    In such a case, the input optional argument ndim must be specified.
  2. If ub is a vector of shape (1:ndim), it represents the upper bounds of the ndim-dimensional hyper-rectangle support of the distribution along each dimension.
  3. If ub is a square matrix of shape (1:ndim, 1:ndim), it contains the representative matrix of the ndim-dimensional hyper-parallelepiped support of the distribution.
[in]ndim: The input positive scalar of type integer of default kind IK, containing the number of dimensions of the distribution.
(optional. It must be present if and only if the input lb and ub are scalar.)
Returns
rand : The output vector of shape (1:ndim) of,
  1. type real of kind any supported by the processor (e.g., RK, RK32, RK64, or RK128),
containing a random vector from the support of the distribution.


Possible calling interfaces

rand(1:ndim) = getUnifParRand(ub(1:ndim)) ! Uniform Hyper-rectangle support
rand(1:ndim) = getUnifParRand(ub, ndim) ! Uniform Hyper-cube support
rand(1:ndim) = getUnifParRand(lb(1:ndim), ub(1:ndim)) ! Uniform Hyper-rectangle support
rand(1:ndim) = getUnifParRand(lb, ub, ndim) ! Uniform Hyper-cube support
!
Generate and return a random vector from the -dimensional MultiVariate Uniform Parallelepiped (MVUP) ...
This module contains classes and procedures for setting up and computing the properties of the MultiV...
Warning
The condition 0 < ndim must hold for the corresponding input arguments.
The condition all(lb /= ub) must hold for the corresponding input arguments.
Although there is theoretically no limit on the possible values of lb and ub with respect to each other, the condition all(lb < ub) is expected (but not checked) to hold for the corresponding input arguments.
These conditions are verified only if the library is built with the preprocessor macro CHECK_ENABLED=1.


Example usage

1program example
2
3 use pm_kind, only: SK, IK, LK
4 use pm_io, only: display_type
6
7 implicit none
8
9 real :: rand(5)
10
11 type(display_type) :: disp
12 disp = display_type(file = "main.out.F90")
13
14 call disp%skip()
15 call disp%show("rand(1:2) = getUnifParRand(ub = 1., ndim = 2)")
16 rand(1:2) = getUnifParRand(ub = 1., ndim = 2)
17 call disp%show("rand(1:2)")
18 call disp%show( rand(1:2) )
19 call disp%skip()
20
21 call disp%skip()
22 call disp%show("rand(1:2) = getUnifParRand(lb = -100., ub = 1., ndim = 2)")
23 rand(1:2) = getUnifParRand(lb = -100., ub = 1., ndim = 2)
24 call disp%show("rand(1:2)")
25 call disp%show( rand(1:2) )
26 call disp%skip()
27
28 call disp%skip()
29 call disp%show("rand(1:5) = getUnifParRand(ub = [1., 2., 3., 4., 5.]) ! random vector of dimension 5.")
30 rand(1:5) = getUnifParRand(ub = [1., 2., 3., 4., 5.])
31 call disp%show("rand(1:5)")
32 call disp%show( rand(1:5) )
33 call disp%skip()
34
35 call disp%skip()
36 call disp%show("rand(1:5) = getUnifParRand(lb = -[1., 2., 3., 4., 5.], ub = [1., 2., 3., 4., 5.]) ! random vector of dimension 5.")
37 rand(1:5) = getUnifParRand(lb = -[1., 2., 3., 4., 5.], ub = [1., 2., 3., 4., 5.])
38 call disp%show("rand(1:5)")
39 call disp%show( rand(1:5) )
40 call disp%skip()
41
42 call disp%skip()
43 call disp%show("rand(1:2) = getUnifParRand(ub = reshape([1., 1., -1., -1.], shape = [2, 2]))")
44 rand(1:2) = getUnifParRand(ub = reshape([1., 1., -1., -1.], shape = [2, 2]))
45 call disp%show("rand(1:2)")
46 call disp%show( rand(1:2) )
47 call disp%skip()
48
49 call disp%skip()
50 call disp%show("rand(1:2) = getUnifParRand(lb = [10., 10.], ub = reshape([1., 1., -1., -1.], shape = [2, 2]))")
51 rand(1:2) = getUnifParRand(lb = [10., 10.], ub = reshape([1., 1., -1., -1.], shape = [2, 2]))
52 call disp%show("rand(1:2)")
53 call disp%show( rand(1:2) )
54 call disp%skip()
55
56 !%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
57 ! Output an example array for visualization.
58 !%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
59
60 block
61 use pm_arraySpace, only: setLinSpace
62 real :: rand(2, 4)
63 integer(IK) :: fileUnit, i
64 open(newunit = fileUnit, file = "getUnifParRand.RK.txt")
65 do i = 1, 1000
66 rand(:,1) = getUnifParRand(lb = -[2., 2.], ub = -[0., 1.])
67 rand(:,2) = getUnifParRand(ub = reshape([1., 1., -1., +1.], shape = [2, 2]))
68 rand(:,3) = getUnifParRand(lb = [2.0, -2.], ub = reshape([1., 1., +2., -2.], shape = [2, 2]))
69 rand(:,4) = getUnifParRand(lb = [1.5, -.5], ub = reshape([2., 1., 1., 2.], shape = [2, 2]))
70 write(fileUnit, "(*(g0,:,','))") rand
71 end do
72 close(fileUnit)
73 end block
74
75end program example
Return the linSpace output argument with size(linSpace) elements of evenly-spaced values over the int...
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
2rand(1:2) = getUnifParRand(ub = 1., ndim = 2)
3rand(1:2)
4+0.850678325, +0.511220396
5
6
7rand(1:2) = getUnifParRand(lb = -100., ub = 1., ndim = 2)
8rand(1:2)
9-15.1568966, -88.3737488
10
11
12rand(1:5) = getUnifParRand(ub = [1., 2., 3., 4., 5.]) ! random vector of dimension 5.
13rand(1:5)
14+0.533918738E-1, +1.36438107, +2.69066095, +2.02097845, +3.16281509
15
16
17rand(1:5) = getUnifParRand(lb = -[1., 2., 3., 4., 5.], ub = [1., 2., 3., 4., 5.]) ! random vector of dimension 5.
18rand(1:5)
19-0.454303145, -1.16930032, +2.82529736, +2.72344017, -0.689319611
20
21
22rand(1:2) = getUnifParRand(ub = reshape([1., 1., -1., -1.], shape = [2, 2]))
23rand(1:2)
24-0.149664283, -0.149664283
25
26
27rand(1:2) = getUnifParRand(lb = [10., 10.], ub = reshape([1., 1., -1., -1.], shape = [2, 2]))
28rand(1:2)
29+9.55906010, +9.55906010
30
31

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
12for kind in ["RK"]:
13
14 pattern = "*." + kind + ".txt"
15 fileList = glob.glob(pattern)
16
17 for file in fileList:
18
19 df = pd.read_csv(file, delimiter = ",", header = None)
20
21 # definitions for the axes
22 #left, width = 0.1, 0.65
23 #bottom, height = 0.1, 0.65
24 #spacing = 0.015
25
26 # start with a square Figure
27 fig = plt.figure(figsize = (8, 6))
28
29 plt.rcParams.update({'font.size': fontsize - 2})
30 ax = plt.subplot()
31 #ax = fig.add_axes([left, bottom, width, height]) # scatter plot
32 #ax_histx = fig.add_axes([left, bottom + height + spacing, width, 0.2], sharex = ax) # histx
33 #ax_histy = fig.add_axes([left + width + spacing, bottom, 0.2, height], sharey = ax) # histy
34 #
35 #for axes in [ax, ax_histx, ax_histy]:
36 # axes.grid(visible = True, which = "both", axis = "both", color = "0.85", linestyle = "-")
37 # axes.tick_params(axis = "y", which = "minor")
38 # axes.tick_params(axis = "x", which = "minor")
39 #
40
43
44 # the scatter plot:
45 for i in range(0, len(df.values[0,:]), 2):
46 ax.scatter ( df.values[:,i]
47 , df.values[:,i+1]
48 , s = 8
49 , zorder = 1000
50 )
51
52 #ax_histx.hist(df.values[:, 0], bins = 50, zorder = 1000)
53 #ax_histy.hist(df.values[:,1], bins = 50, orientation = "horizontal", zorder= 1000)
54
55 ax.set_aspect("equal")
56 ax.set_xlabel("X", fontsize = 17)
57 ax.set_ylabel("Y", fontsize = 17)
58 plt.grid(visible = True, which = "both", axis = "both", color = "0.85", linestyle = "-")
59 plt.minorticks_on()
60
61 plt.tight_layout()
62 plt.savefig(file.replace(".txt",".png"))

Visualization of the example output
Test:
test_pm_distUnifPar


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, April 23, 2017, 12:36 AM, Institute for Computational Engineering and Sciences (ICES), University of Texas at Austin

Definition at line 470 of file pm_distUnifPar.F90.


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