Generate count
evenly spaced points over the interval [x1, x2]
if x1 < x2
, or [x2, x1]
if x2 < x1
.
- Parameters
-
[in] | x1 | : The input scalar of either
-
type
complex of kind any supported by the processor (e.g., CK, CK32, CK64, or CK128) or
-
type
real of kind any supported by the processor (e.g., RK, RK32, RK64, or RK128)
representing the starting value of the sequence. |
[in] | x2 | : The input scalar of the same type and kind as x1 representing the ending value of the sequence. |
[in] | count | : The input scalar of type integer of default kind IK representing the length of linSpace to generate. |
[in] | fopen | : The input scalar of type logical of default kind LK. If .true. , the linSpace will be first-open, meaning that x1 will NOT be in the output linSpace sequence.
(optional, default = .false. ) |
[in] | lopen | : The input scalar of type logical of default kind LK. If .true. , the linSpace will be last-open, meaning that x2 will NOT be in the output linSpace sequence.
(optional, default = .false. ) |
- Returns
linSpace
: The output array of shape (1:count)
of the same type and kind as the input x1
containing the evenly-spaced sequence within the interval specified by x1
and x2
.
Possible calling interfaces ⛓
Generate count evenly spaced points over the interval [x1, x2] if x1 < x2, or [x2,...
This module contains procedures and generic interfaces for generating arrays with linear or logarithm...
- Warning
- The condition
0 < count
must hold for the corresponding input arguments.
This condition is 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.
- See also
- getLinSpace
getLogSpace
setLogSpace
Example usage ⛓
10 type(display_type) :: disp
14 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%")
15 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%")
16 call disp%show(
"!Generate real linspace.")
17 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%")
18 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%")
28 call disp%show(
"getLinSpace(0._RKS, 10._RKS, 4_IK)")
31 call disp%show(
"getLinSpace(0._RKS, 10._RKS, 4_IK, fopen = .true._LK)")
34 call disp%show(
"getLinSpace(0._RKS, 10._RKS, 4_IK, lopen = .true._LK)")
37 call disp%show(
"getLinSpace(0._RKS, 10._RKS, 4_IK, fopen = .true._LK, lopen = .true._LK)")
44 call disp%show(
"getLinSpace(10._RKS, 0._RKS, 4_IK)")
47 call disp%show(
"getLinSpace(10._RKS, 0._RKS, 4_IK, fopen = .true._LK)")
50 call disp%show(
"getLinSpace(10._RKS, 0._RKS, 4_IK, lopen = .true._LK)")
53 call disp%show(
"getLinSpace(10._RKS, 0._RKS, 4_IK, fopen = .true._LK, lopen = .true._LK)")
64 call disp%show(
"getLinSpace(0._RKD, 10._RKD, 4_IK)")
67 call disp%show(
"getLinSpace(0._RKD, 10._RKD, 4_IK, fopen = .true._LK)")
70 call disp%show(
"getLinSpace(0._RKD, 10._RKD, 4_IK, lopen = .true._LK)")
73 call disp%show(
"getLinSpace(0._RKD, 10._RKD, 4_IK, fopen = .true._LK, lopen = .true._LK)")
80 call disp%show(
"getLinSpace(10._RKD, 0._RKD, 4_IK)")
83 call disp%show(
"getLinSpace(10._RKD, 0._RKD, 4_IK, fopen = .true._LK)")
86 call disp%show(
"getLinSpace(10._RKD, 0._RKD, 4_IK, lopen = .true._LK)")
89 call disp%show(
"getLinSpace(10._RKD, 0._RKD, 4_IK, fopen = .true._LK, lopen = .true._LK)")
100 call disp%show(
"getLinSpace(0._RKH, 10._RKH, 4_IK)")
103 call disp%show(
"getLinSpace(0._RKH, 10._RKH, 4_IK, fopen = .true._LK)")
106 call disp%show(
"getLinSpace(0._RKH, 10._RKH, 4_IK, lopen = .true._LK)")
109 call disp%show(
"getLinSpace(0._RKH, 10._RKH, 4_IK, fopen = .true._LK, lopen = .true._LK)")
116 call disp%show(
"getLinSpace(10._RKH, 0._RKH, 4_IK)")
119 call disp%show(
"getLinSpace(10._RKH, 0._RKH, 4_IK, fopen = .true._LK)")
122 call disp%show(
"getLinSpace(10._RKH, 0._RKH, 4_IK, lopen = .true._LK)")
125 call disp%show(
"getLinSpace(10._RKH, 0._RKH, 4_IK, fopen = .true._LK, lopen = .true._LK)")
131 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%")
132 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%")
133 call disp%show(
"!Generate complex linspace.")
134 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%")
135 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%")
146 call disp%show(
"getLinSpace((0._CKS,0._CKS), (10._CKS,10._CKS), 4_IK)")
149 call disp%show(
"getLinSpace((0._CKS,0._CKS), (10._CKS,10._CKS), 4_IK, fopen = .true._LK)")
152 call disp%show(
"getLinSpace((0._CKS,0._CKS), (10._CKS,10._CKS), 4_IK, lopen = .true._LK)")
155 call disp%show(
"getLinSpace((0._CKS,0._CKS), (10._CKS,10._CKS), 4_IK, fopen = .true._LK, lopen = .true._LK)")
156 call disp%show(
getLinSpace((
0._CKS,
0._CKS), (
10._CKS,
10._CKS),
4_IK, fopen
= .true._LK, lopen
= .true._LK) )
162 call disp%show(
"getLinSpace((10._CKS,-10._CKS), (0._CKS,0._CKS), 4_IK)")
165 call disp%show(
"getLinSpace((10._CKS,-10._CKS), (0._CKS,0._CKS), 4_IK, fopen = .true._LK)")
166 call disp%show(
getLinSpace((
10._CKS,
-10._CKS), (
0._CKS,
0._CKS),
4_IK, fopen
= .true._LK) )
168 call disp%show(
"getLinSpace((10._CKS,-10._CKS), (0._CKS,0._CKS), 4_IK, lopen = .true._LK)")
169 call disp%show(
getLinSpace((
10._CKS,
-10._CKS), (
0._CKS,
0._CKS),
4_IK, lopen
= .true._LK) )
171 call disp%show(
"getLinSpace((10._CKS,-10._CKS), (0._CKS,0._CKS), 4_IK, fopen = .true._LK, lopen = .true._LK)")
172 call disp%show(
getLinSpace((
10._CKS,
-10._CKS), (
0._CKS,
0._CKS),
4_IK, fopen
= .true._LK, lopen
= .true._LK) )
182 call disp%show(
"getLinSpace((0._CKD,0._CKD), (10._CKD,10._CKD), 4_IK)")
185 call disp%show(
"getLinSpace((0._CKD,0._CKD), (10._CKD,10._CKD), 4_IK, fopen = .true._LK)")
188 call disp%show(
"getLinSpace((0._CKD,0._CKD), (10._CKD,10._CKD), 4_IK, lopen = .true._LK)")
191 call disp%show(
"getLinSpace((0._CKD,0._CKD), (10._CKD,10._CKD), 4_IK, fopen = .true._LK, lopen = .true._LK)")
192 call disp%show(
getLinSpace((
0._CKD,
0._CKD), (
10._CKD,
10._CKD),
4_IK, fopen
= .true._LK, lopen
= .true._LK) )
198 call disp%show(
"getLinSpace((10._CKD,-10._CKD), (0._CKD,0._CKD), 4_IK)")
201 call disp%show(
"getLinSpace((10._CKD,-10._CKD), (0._CKD,0._CKD), 4_IK, fopen = .true._LK)")
202 call disp%show(
getLinSpace((
10._CKD,
-10._CKD), (
0._CKD,
0._CKD),
4_IK, fopen
= .true._LK) )
204 call disp%show(
"getLinSpace((10._CKD,-10._CKD), (0._CKD,0._CKD), 4_IK, lopen = .true._LK)")
205 call disp%show(
getLinSpace((
10._CKD,
-10._CKD), (
0._CKD,
0._CKD),
4_IK, lopen
= .true._LK) )
207 call disp%show(
"getLinSpace((10._CKD,-10._CKD), (0._CKD,0._CKD), 4_IK, fopen = .true._LK, lopen = .true._LK)")
208 call disp%show(
getLinSpace((
10._CKD,
-10._CKD), (
0._CKD,
0._CKD),
4_IK, fopen
= .true._LK, lopen
= .true._LK) )
218 call disp%show(
"getLinSpace((0._CKH,0._CKH), (10._CKH,10._CKH), 4_IK)")
221 call disp%show(
"getLinSpace((0._CKH,0._CKH), (10._CKH,10._CKH), 4_IK, fopen = .true._LK)")
224 call disp%show(
"getLinSpace((0._CKH,0._CKH), (10._CKH,10._CKH), 4_IK, lopen = .true._LK)")
227 call disp%show(
"getLinSpace((0._CKH,0._CKH), (10._CKH,10._CKH), 4_IK, fopen = .true._LK, lopen = .true._LK)")
228 call disp%show(
getLinSpace((
0._CKH,
0._CKH), (
10._CKH,
10._CKH),
4_IK, fopen
= .true._LK, lopen
= .true._LK) )
234 call disp%show(
"getLinSpace((10._CKH,-10._CKH), (0._CKH,0._CKH), 4_IK)")
237 call disp%show(
"getLinSpace((10._CKH,-10._CKH), (0._CKH,0._CKH), 4_IK, fopen = .true._LK)")
238 call disp%show(
getLinSpace((
10._CKH,
-10._CKH), (
0._CKH,
0._CKH),
4_IK, fopen
= .true._LK) )
240 call disp%show(
"getLinSpace((10._CKH,-10._CKH), (0._CKH,0._CKH), 4_IK, lopen = .true._LK)")
241 call disp%show(
getLinSpace((
10._CKH,
-10._CKH), (
0._CKH,
0._CKH),
4_IK, lopen
= .true._LK) )
243 call disp%show(
"getLinSpace((10._CKH,-10._CKH), (0._CKH,0._CKH), 4_IK, fopen = .true._LK, lopen = .true._LK)")
244 call disp%show(
getLinSpace((
10._CKH,
-10._CKH), (
0._CKH,
0._CKH),
4_IK, fopen
= .true._LK, lopen
= .true._LK) )
This is a generic method of the derived type display_type with pass attribute.
This is a generic method of the derived type display_type with pass attribute.
This module contains classes and procedures for input/output (IO) or generic display operations on st...
type(display_type) disp
This is a scalar module variable an object of type display_type for general display.
This module defines the relevant Fortran kind type-parameters frequently used in the ParaMonte librar...
integer, parameter LK
The default logical kind in the ParaMonte library: kind(.true.) in Fortran, kind(....
integer, parameter CKH
The scalar integer constant of intrinsic default kind, representing the highest-precision complex kin...
integer, parameter CKS
The single-precision complex kind in Fortran mode. On most platforms, this is a 32-bit real kind.
integer, parameter IK
The default integer kind in the ParaMonte library: int32 in Fortran, c_int32_t in C-Fortran Interoper...
integer, parameter CKD
The double precision complex kind in Fortran mode. On most platforms, this is a 64-bit real kind.
integer, parameter RKD
The double precision real kind in Fortran mode. On most platforms, this is an 64-bit real kind.
integer, parameter SK
The default character kind in the ParaMonte library: kind("a") in Fortran, c_char in C-Fortran Intero...
integer, parameter RKH
The scalar integer constant of intrinsic default kind, representing the highest-precision real kind t...
integer, parameter RKS
The single-precision real kind in Fortran mode. On most platforms, this is an 32-bit real kind.
Generate and return an object of type display_type.
Example Unix compile command via Intel ifort
compiler ⛓
3ifort -fpp -standard-semantics -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
Example Windows Batch compile command via Intel ifort
compiler ⛓
2set PATH=..\..\..\lib;%PATH%
3ifort /fpp /standard-semantics /O3 /I:..\..\..\include main.F90 ..\..\..\lib\libparamonte*.lib /exe:main.exe
Example Unix / MinGW compile command via GNU gfortran
compiler ⛓
3gfortran -cpp -ffree-line-length-none -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
Example output ⛓
15+0.00000000,
+3.33333325,
+6.66666651,
+10.0000000
17getLinSpace(
0._RKS,
10._RKS,
4_IK, fopen
= .true._LK)
18+2.50000000,
+5.00000000,
+7.50000000,
+10.0000000
20getLinSpace(
0._RKS,
10._RKS,
4_IK, lopen
= .true._LK)
21+0.00000000,
+2.50000000,
+5.00000000,
+7.50000000
23getLinSpace(
0._RKS,
10._RKS,
4_IK, fopen
= .true._LK, lopen
= .true._LK)
24+1.25000000,
+3.75000000,
+6.25000000,
+8.75000000
28+10.0000000,
+6.66666698,
+3.33333349,
+0.00000000
30getLinSpace(
10._RKS,
0._RKS,
4_IK, fopen
= .true._LK)
31+7.50000000,
+5.00000000,
+2.50000000,
+0.00000000
33getLinSpace(
10._RKS,
0._RKS,
4_IK, lopen
= .true._LK)
34+10.0000000,
+7.50000000,
+5.00000000,
+2.50000000
36getLinSpace(
10._RKS,
0._RKS,
4_IK, fopen
= .true._LK, lopen
= .true._LK)
37+8.75000000,
+6.25000000,
+3.75000000,
+1.25000000
46+0.0000000000000000,
+3.3333333333333335,
+6.6666666666666670,
+10.000000000000000
48getLinSpace(
0._RKD,
10._RKD,
4_IK, fopen
= .true._LK)
49+2.5000000000000000,
+5.0000000000000000,
+7.5000000000000000,
+10.000000000000000
51getLinSpace(
0._RKD,
10._RKD,
4_IK, lopen
= .true._LK)
52+0.0000000000000000,
+2.5000000000000000,
+5.0000000000000000,
+7.5000000000000000
54getLinSpace(
0._RKD,
10._RKD,
4_IK, fopen
= .true._LK, lopen
= .true._LK)
55+1.2500000000000000,
+3.7500000000000000,
+6.2500000000000000,
+8.7500000000000000
59+10.000000000000000,
+6.6666666666666661,
+3.3333333333333330,
+0.0000000000000000
61getLinSpace(
10._RKD,
0._RKD,
4_IK, fopen
= .true._LK)
62+7.5000000000000000,
+5.0000000000000000,
+2.5000000000000000,
+0.0000000000000000
64getLinSpace(
10._RKD,
0._RKD,
4_IK, lopen
= .true._LK)
65+10.000000000000000,
+7.5000000000000000,
+5.0000000000000000,
+2.5000000000000000
67getLinSpace(
10._RKD,
0._RKD,
4_IK, fopen
= .true._LK, lopen
= .true._LK)
68+8.7500000000000000,
+6.2500000000000000,
+3.7500000000000000,
+1.2500000000000000
77+0.00000000000000000000000000000000000,
+3.33333333333333333333333333333333346,
+6.66666666666666666666666666666666692,
+10.0000000000000000000000000000000000
79getLinSpace(
0._RKH,
10._RKH,
4_IK, fopen
= .true._LK)
80+2.50000000000000000000000000000000000,
+5.00000000000000000000000000000000000,
+7.50000000000000000000000000000000000,
+10.0000000000000000000000000000000000
82getLinSpace(
0._RKH,
10._RKH,
4_IK, lopen
= .true._LK)
83+0.00000000000000000000000000000000000,
+2.50000000000000000000000000000000000,
+5.00000000000000000000000000000000000,
+7.50000000000000000000000000000000000
85getLinSpace(
0._RKH,
10._RKH,
4_IK, fopen
= .true._LK, lopen
= .true._LK)
86+1.25000000000000000000000000000000000,
+3.75000000000000000000000000000000000,
+6.25000000000000000000000000000000000,
+8.75000000000000000000000000000000000
90+10.0000000000000000000000000000000000,
+6.66666666666666666666666666666666615,
+3.33333333333333333333333333333333308,
+0.00000000000000000000000000000000000
92getLinSpace(
10._RKH,
0._RKH,
4_IK, fopen
= .true._LK)
93+7.50000000000000000000000000000000000,
+5.00000000000000000000000000000000000,
+2.50000000000000000000000000000000000,
+0.00000000000000000000000000000000000
95getLinSpace(
10._RKH,
0._RKH,
4_IK, lopen
= .true._LK)
96+10.0000000000000000000000000000000000,
+7.50000000000000000000000000000000000,
+5.00000000000000000000000000000000000,
+2.50000000000000000000000000000000000
98getLinSpace(
10._RKH,
0._RKH,
4_IK, fopen
= .true._LK, lopen
= .true._LK)
99+8.75000000000000000000000000000000000,
+6.25000000000000000000000000000000000,
+3.75000000000000000000000000000000000,
+1.25000000000000000000000000000000000
114getLinSpace((
0._CKS,
0._CKS), (
10._CKS,
10._CKS),
4_IK)
115(
+0.00000000,
+0.00000000), (
+3.33333325,
+3.33333325), (
+6.66666651,
+6.66666651), (
+10.0000000,
+10.0000000)
117getLinSpace((
0._CKS,
0._CKS), (
10._CKS,
10._CKS),
4_IK, fopen
= .true._LK)
118(
+2.50000000,
+2.50000000), (
+5.00000000,
+5.00000000), (
+7.50000000,
+7.50000000), (
+10.0000000,
+10.0000000)
120getLinSpace((
0._CKS,
0._CKS), (
10._CKS,
10._CKS),
4_IK, lopen
= .true._LK)
121(
+0.00000000,
+0.00000000), (
+2.50000000,
+2.50000000), (
+5.00000000,
+5.00000000), (
+7.50000000,
+7.50000000)
123getLinSpace((
0._CKS,
0._CKS), (
10._CKS,
10._CKS),
4_IK, fopen
= .true._LK, lopen
= .true._LK)
124(
+1.25000000,
+1.25000000), (
+3.75000000,
+3.75000000), (
+6.25000000,
+6.25000000), (
+8.75000000,
+8.75000000)
127getLinSpace((
10._CKS,
-10._CKS), (
0._CKS,
0._CKS),
4_IK)
128(
+10.0000000,
-10.0000000), (
+6.66666698,
-6.66666698), (
+3.33333349,
-3.33333349), (
+0.00000000,
+0.00000000)
130getLinSpace((
10._CKS,
-10._CKS), (
0._CKS,
0._CKS),
4_IK, fopen
= .true._LK)
131(
+7.50000000,
-7.50000000), (
+5.00000000,
-5.00000000), (
+2.50000000,
-2.50000000), (
+0.00000000,
+0.00000000)
133getLinSpace((
10._CKS,
-10._CKS), (
0._CKS,
0._CKS),
4_IK, lopen
= .true._LK)
134(
+10.0000000,
-10.0000000), (
+7.50000000,
-7.50000000), (
+5.00000000,
-5.00000000), (
+2.50000000,
-2.50000000)
136getLinSpace((
10._CKS,
-10._CKS), (
0._CKS,
0._CKS),
4_IK, fopen
= .true._LK, lopen
= .true._LK)
137(
+8.75000000,
-8.75000000), (
+6.25000000,
-6.25000000), (
+3.75000000,
-3.75000000), (
+1.25000000,
-1.25000000)
145getLinSpace((
0._CKD,
0._CKD), (
10._CKD,
10._CKD),
4_IK)
146(
+0.0000000000000000,
+0.0000000000000000), (
+3.3333333333333335,
+3.3333333333333335), (
+6.6666666666666670,
+6.6666666666666670), (
+10.000000000000000,
+10.000000000000000)
148getLinSpace((
0._CKD,
0._CKD), (
10._CKD,
10._CKD),
4_IK, fopen
= .true._LK)
149(
+2.5000000000000000,
+2.5000000000000000), (
+5.0000000000000000,
+5.0000000000000000), (
+7.5000000000000000,
+7.5000000000000000), (
+10.000000000000000,
+10.000000000000000)
151getLinSpace((
0._CKD,
0._CKD), (
10._CKD,
10._CKD),
4_IK, lopen
= .true._LK)
152(
+0.0000000000000000,
+0.0000000000000000), (
+2.5000000000000000,
+2.5000000000000000), (
+5.0000000000000000,
+5.0000000000000000), (
+7.5000000000000000,
+7.5000000000000000)
154getLinSpace((
0._CKD,
0._CKD), (
10._CKD,
10._CKD),
4_IK, fopen
= .true._LK, lopen
= .true._LK)
155(
+1.2500000000000000,
+1.2500000000000000), (
+3.7500000000000000,
+3.7500000000000000), (
+6.2500000000000000,
+6.2500000000000000), (
+8.7500000000000000,
+8.7500000000000000)
158getLinSpace((
10._CKD,
-10._CKD), (
0._CKD,
0._CKD),
4_IK)
159(
+10.000000000000000,
-10.000000000000000), (
+6.6666666666666661,
-6.6666666666666661), (
+3.3333333333333330,
-3.3333333333333330), (
+0.0000000000000000,
+0.0000000000000000)
161getLinSpace((
10._CKD,
-10._CKD), (
0._CKD,
0._CKD),
4_IK, fopen
= .true._LK)
162(
+7.5000000000000000,
-7.5000000000000000), (
+5.0000000000000000,
-5.0000000000000000), (
+2.5000000000000000,
-2.5000000000000000), (
+0.0000000000000000,
+0.0000000000000000)
164getLinSpace((
10._CKD,
-10._CKD), (
0._CKD,
0._CKD),
4_IK, lopen
= .true._LK)
165(
+10.000000000000000,
-10.000000000000000), (
+7.5000000000000000,
-7.5000000000000000), (
+5.0000000000000000,
-5.0000000000000000), (
+2.5000000000000000,
-2.5000000000000000)
167getLinSpace((
10._CKD,
-10._CKD), (
0._CKD,
0._CKD),
4_IK, fopen
= .true._LK, lopen
= .true._LK)
168(
+8.7500000000000000,
-8.7500000000000000), (
+6.2500000000000000,
-6.2500000000000000), (
+3.7500000000000000,
-3.7500000000000000), (
+1.2500000000000000,
-1.2500000000000000)
176getLinSpace((
0._CKH,
0._CKH), (
10._CKH,
10._CKH),
4_IK)
177(
+0.00000000000000000000000000000000000,
+0.00000000000000000000000000000000000), (
+3.33333333333333333333333333333333346,
+3.33333333333333333333333333333333346), (
+6.66666666666666666666666666666666692,
+6.66666666666666666666666666666666692), (
+10.0000000000000000000000000000000000,
+10.0000000000000000000000000000000000)
179getLinSpace((
0._CKH,
0._CKH), (
10._CKH,
10._CKH),
4_IK, fopen
= .true._LK)
180(
+2.50000000000000000000000000000000000,
+2.50000000000000000000000000000000000), (
+5.00000000000000000000000000000000000,
+5.00000000000000000000000000000000000), (
+7.50000000000000000000000000000000000,
+7.50000000000000000000000000000000000), (
+10.0000000000000000000000000000000000,
+10.0000000000000000000000000000000000)
182getLinSpace((
0._CKH,
0._CKH), (
10._CKH,
10._CKH),
4_IK, lopen
= .true._LK)
183(
+0.00000000000000000000000000000000000,
+0.00000000000000000000000000000000000), (
+2.50000000000000000000000000000000000,
+2.50000000000000000000000000000000000), (
+5.00000000000000000000000000000000000,
+5.00000000000000000000000000000000000), (
+7.50000000000000000000000000000000000,
+7.50000000000000000000000000000000000)
185getLinSpace((
0._CKH,
0._CKH), (
10._CKH,
10._CKH),
4_IK, fopen
= .true._LK, lopen
= .true._LK)
186(
+1.25000000000000000000000000000000000,
+1.25000000000000000000000000000000000), (
+3.75000000000000000000000000000000000,
+3.75000000000000000000000000000000000), (
+6.25000000000000000000000000000000000,
+6.25000000000000000000000000000000000), (
+8.75000000000000000000000000000000000,
+8.75000000000000000000000000000000000)
189getLinSpace((
10._CKH,
-10._CKH), (
0._CKH,
0._CKH),
4_IK)
190(
+10.0000000000000000000000000000000000,
-10.0000000000000000000000000000000000), (
+6.66666666666666666666666666666666615,
-6.66666666666666666666666666666666615), (
+3.33333333333333333333333333333333308,
-3.33333333333333333333333333333333308), (
+0.00000000000000000000000000000000000,
+0.00000000000000000000000000000000000)
192getLinSpace((
10._CKH,
-10._CKH), (
0._CKH,
0._CKH),
4_IK, fopen
= .true._LK)
193(
+7.50000000000000000000000000000000000,
-7.50000000000000000000000000000000000), (
+5.00000000000000000000000000000000000,
-5.00000000000000000000000000000000000), (
+2.50000000000000000000000000000000000,
-2.50000000000000000000000000000000000), (
+0.00000000000000000000000000000000000,
+0.00000000000000000000000000000000000)
195getLinSpace((
10._CKH,
-10._CKH), (
0._CKH,
0._CKH),
4_IK, lopen
= .true._LK)
196(
+10.0000000000000000000000000000000000,
-10.0000000000000000000000000000000000), (
+7.50000000000000000000000000000000000,
-7.50000000000000000000000000000000000), (
+5.00000000000000000000000000000000000,
-5.00000000000000000000000000000000000), (
+2.50000000000000000000000000000000000,
-2.50000000000000000000000000000000000)
198getLinSpace((
10._CKH,
-10._CKH), (
0._CKH,
0._CKH),
4_IK, fopen
= .true._LK, lopen
= .true._LK)
199(
+8.75000000000000000000000000000000000,
-8.75000000000000000000000000000000000), (
+6.25000000000000000000000000000000000,
-6.25000000000000000000000000000000000), (
+3.75000000000000000000000000000000000,
-3.75000000000000000000000000000000000), (
+1.25000000000000000000000000000000000,
-1.25000000000000000000000000000000000)
- Test:
- test_pm_arraySpace
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.
-
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.
-
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.
- Copyright
- Computational Data Science Lab
- Author:
- Fatemeh Bagheri, Tuesday 08:49 PM, August 10, 2021, Dallas, TX
Definition at line 108 of file pm_arraySpace.F90.