15 integer(IK) ,
parameter :: nsam
= 2
16 integer(IK) ,
allocatable :: iweight(:)
17 integer(IK) :: isam, ndim, lb(nsam), ub(nsam)
18 integer(IK) :: dim, itry, ntry
= 10
19 type(display_type) :: disp
23 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
24 call disp%show(
"!Compute the merged mean of a univariate sample.")
25 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
29 real(TKG) :: mean(
0:nsam), meanMerged
30 real(TKG),
allocatable :: sample(:)
33 call disp%show(
"lb(1) = 1; ub(1) = getUnifRand(1, 7)")
36 call disp%show(
" lb(isam) = ub(isam - 1) + 1")
37 call disp%show(
" ub(isam) = ub(isam - 1) + getUnifRand(1, 7)")
40 lb(isam)
= ub(isam
- 1)
+ 1
47 call disp%show(
"sample = getUnifRand(0., 1., ub(nsam))")
51 call disp%show(
"mean(0) = getMean(sample)")
53 call disp%show(
"mean(0) ! reference")
56 call disp%show(
" mean(isam) = getMean(sample(lb(isam):ub(isam)))")
59 mean(isam)
= getMean(sample(lb(isam):ub(isam)))
61 call disp%show(
"call setMeanMerged(meanMerged, mean(2), mean(1), ub(1) / real(ub(2), TKG))")
62 call setMeanMerged(meanMerged, mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
65 call disp%show(
"call setMeanMerged(mean(2), mean(1), ub(1) / real(ub(2), TKG))")
66 call setMeanMerged(mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
69 call disp%show(
"mean(0) ! reference")
76 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
77 call disp%show(
"!Compute the merged mean of a frequency weighted univariate sample.")
78 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
82 real(TKG) :: mean(
0:nsam), meanMerged
83 real(TKG),
allocatable :: sample(:)
86 call disp%show(
"lb(1) = 1; ub(1) = getUnifRand(1, 7)")
89 call disp%show(
" lb(isam) = ub(isam - 1) + 1")
90 call disp%show(
" ub(isam) = ub(isam - 1) + getUnifRand(1, 7)")
93 lb(isam)
= ub(isam
- 1)
+ 1
100 call disp%show(
"sample = getUnifRand(0., 1., ub(nsam))")
104 call disp%show(
"iweight = getUnifRand(1, 10, size(sample, 1, IK))")
108 call disp%show(
"mean(0) = getMean(sample, iweight)")
109 mean(
0)
= getMean(sample, iweight)
110 call disp%show(
"mean(0) ! reference")
113 call disp%show(
" mean(isam) = getMean(sample(lb(isam):ub(isam)), iweight(lb(isam):ub(isam)))")
116 mean(isam)
= getMean(sample(lb(isam):ub(isam)), iweight(lb(isam):ub(isam)))
118 call disp%show(
"call setMeanMerged(meanMerged, mean(2), mean(1), real(sum(iweight(:ub(1))), TKG) / real(sum(iweight), TKG))")
119 call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
122 call disp%show(
"call setMeanMerged(mean(2), mean(1), real(sum(iweight(:ub(1))), TKG) / real(sum(iweight), TKG))")
123 call setMeanMerged(mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
126 call disp%show(
"mean(0) ! reference")
133 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
134 call disp%show(
"!Compute the merged mean of a reliability weighted univariate sample.")
135 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
139 real(TKG) :: mean(
0:nsam), meanMerged
140 real(TKG),
allocatable :: sample(:)
141 real(TKG),
allocatable :: rweight(:)
144 call disp%show(
"lb(1) = 1; ub(1) = getUnifRand(1, 7)")
147 call disp%show(
" lb(isam) = ub(isam - 1) + 1")
148 call disp%show(
" ub(isam) = ub(isam - 1) + getUnifRand(1, 7)")
151 lb(isam)
= ub(isam
- 1)
+ 1
158 call disp%show(
"sample = getUnifRand(0., 1., ub(nsam))")
162 call disp%show(
"rweight = getUnifRand(1., 2., size(sample, 1, IK))")
166 call disp%show(
"mean(0) = getMean(sample, rweight)")
167 mean(
0)
= getMean(sample, rweight)
168 call disp%show(
"mean(0) ! reference")
171 call disp%show(
" mean(isam) = getMean(sample(lb(isam):ub(isam)), rweight(lb(isam):ub(isam)))")
174 mean(isam)
= getMean(sample(lb(isam):ub(isam)), rweight(lb(isam):ub(isam)))
176 call disp%show(
"call setMeanMerged(meanMerged, mean(2), mean(1), real(sum(rweight(:ub(1))) / sum(rweight), TKG))")
177 call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
180 call disp%show(
"call setMeanMerged(mean(2), mean(1), real(sum(rweight(:ub(1))) / sum(rweight), TKG))")
181 call setMeanMerged(mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
184 call disp%show(
"mean(0) ! reference")
191 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
192 call disp%show(
"!Compute the merged mean of a multivariate sample.")
193 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
197 real(TKG),
allocatable :: mean(:,:), meanMerged(:)
198 real(TKG),
allocatable :: sample(:,:)
201 call disp%show(
"dim = 2; lb(1) = 1; ub(1) = getUnifRand(1, 7)")
204 call disp%show(
" lb(isam) = ub(isam - 1) + 1")
205 call disp%show(
" ub(isam) = ub(isam - 1) + getUnifRand(1, 7)")
208 lb(isam)
= ub(isam
- 1)
+ 1
215 call disp%show(
"ndim = getUnifRand(1, minval(ub - lb + 1, 1))")
217 call disp%show(
"call setRebound(mean, [1_IK, 0_IK], [ndim, nsam])")
218 call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
219 call disp%show(
"call setResized(meanMerged, ndim)")
221 call disp%show(
"sample = getUnifRand(-1., +1., ndim, ub(nsam))")
225 call disp%show(
"mean(:,0) = getMean(sample, dim)")
226 mean(:,
0)
= getMean(sample, dim)
227 call disp%show(
"mean(:,0) ! reference")
230 call disp%show(
" mean(:,isam) = getMean(sample(:,lb(isam):ub(isam)), dim)")
233 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
235 call disp%show(
"call setMeanMerged(meanMerged, mean(:,2), mean(:,1), real(ub(1), TKG) / real(ub(2), TKG))")
236 call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
239 call disp%show(
"call setMeanMerged(mean(:,2), mean(:,1), real(ub(1), TKG) / real(ub(2), TKG))")
240 call setMeanMerged(mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
243 call disp%show(
"mean(:,0) ! reference")
250 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
251 call disp%show(
"!Compute the merged mean of a frequency weighted multivariate sample.")
252 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
256 real(TKG),
allocatable :: mean(:,:), meanMerged(:)
257 real(TKG),
allocatable :: sample(:,:)
260 call disp%show(
"dim = 2; lb(1) = 1; ub(1) = getUnifRand(1, 7)")
263 call disp%show(
" lb(isam) = ub(isam - 1) + 1")
264 call disp%show(
" ub(isam) = ub(isam - 1) + getUnifRand(1, 7)")
267 lb(isam)
= ub(isam
- 1)
+ 1
274 call disp%show(
"ndim = getUnifRand(1, minval(ub - lb + 1, 1))")
276 call disp%show(
"call setRebound(mean, [1_IK, 0_IK], [ndim, nsam])")
277 call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
278 call disp%show(
"call setResized(meanMerged, ndim)")
280 call disp%show(
"sample = getUnifRand(-1., +1., ndim, ub(nsam))")
284 call disp%show(
"iweight = getUnifRand(1, 10, size(sample, dim, IK))")
288 call disp%show(
"mean(:,0) = getMean(sample, 2_IK, iweight)")
289 mean(:,
0)
= getMean(sample,
2_IK, iweight)
290 call disp%show(
"mean(:,0) ! reference")
293 call disp%show(
" mean(:,isam) = getMean(sample(:,lb(isam):ub(isam)), 2_IK, iweight(lb(isam):ub(isam)))")
296 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)),
2_IK, iweight(lb(isam):ub(isam)))
298 call disp%show(
"call setMeanMerged(meanMerged, mean(:,2), mean(:,1), real(sum(iweight(:ub(1))), TKG) / real(sum(iweight), TKG))")
299 call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
302 call disp%show(
"call setMeanMerged(mean(:,2), mean(:,1), real(sum(iweight(:ub(1))), TKG) / real(sum(iweight), TKG))")
303 call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
306 call disp%show(
"mean(:,0) ! reference")
313 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
314 call disp%show(
"!Compute the merged mean of a reliability weighted multivariate sample.")
315 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
319 real(TKG),
allocatable :: mean(:,:), meanMerged(:)
320 real(TKG),
allocatable :: sample(:,:)
321 real(TKG),
allocatable :: rweight(:)
324 call disp%show(
"lb(1) = 1; ub(1) = getUnifRand(1, 7)")
327 call disp%show(
" lb(isam) = ub(isam - 1) + 1")
328 call disp%show(
" ub(isam) = ub(isam - 1) + getUnifRand(1, 7)")
331 lb(isam)
= ub(isam
- 1)
+ 1
338 call disp%show(
"ndim = getUnifRand(1, minval(ub - lb + 1, 1))")
340 call disp%show(
"call setRebound(mean, [1_IK, 0_IK], [ndim, nsam])")
341 call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
342 call disp%show(
"call setResized(meanMerged, ndim)")
344 call disp%show(
"sample = getUnifRand(-1., +1., ndim, ub(nsam))")
348 call disp%show(
"rweight = getUnifRand(1, 10, size(sample, dim, IK))")
352 call disp%show(
"mean(:,0) = getMean(sample, dim, rweight)")
353 mean(:,
0)
= getMean(sample, dim, rweight)
354 call disp%show(
"mean(:,0) ! reference")
357 call disp%show(
" mean(:,isam) = getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))")
360 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
362 call disp%show(
"call setMeanMerged(meanMerged, mean(:,2), mean(:,1), real(sum(rweight(:ub(1))) / sum(rweight), TKG))")
363 call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
366 call disp%show(
"call setMeanMerged(mean(:,2), mean(:,1), real(sum(rweight(:ub(1))) / sum(rweight), TKG))")
367 call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
370 call disp%show(
"mean(:,0) ! reference")
Generate minimally-spaced character, integer, real sequences or sequences at fixed intervals of size ...
Resize (shrink or expand) an input allocatable array of rank 1..3 to arbitrary new lower and upper bo...
Allocate or resize (shrink or expand) an input allocatable scalar string or array of rank 1....
Generate and return a scalar or a contiguous array of rank 1 of length s1 of randomly uniformly distr...
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.
Generate and return the (weighted) mean of an input sample of nsam observations with ndim = 1 or 2 at...
Return the (weighted) merged mean of a sample resulting from the merger of two separate (weighted) sa...
This module contains procedures and generic interfaces for generating ranges of discrete character,...
This module contains procedures and generic interfaces for resizing allocatable arrays of various typ...
This module contains procedures and generic interfaces for resizing allocatable arrays of various typ...
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...
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 IK
The default integer kind in the ParaMonte library: int32 in Fortran, c_int32_t in C-Fortran Interoper...
integer, parameter SK
The default character kind in the ParaMonte library: kind("a") in Fortran, c_char in C-Fortran Intero...
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.
9 lb(isam)
= ub(isam
- 1)
+ 1
18+0.837064385E-1,
+0.865662515,
+0.604912996,
+0.987767577,
+0.808076859,
+0.420660377E-1,
+0.615481853,
+0.171317279,
+0.608474791,
+0.967244923,
+0.774139166,
+0.449676991
23 mean(isam)
= getMean(sample(lb(isam):ub(isam)))
25call setMeanMerged(meanMerged, mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
37 lb(isam)
= ub(isam
- 1)
+ 1
46+0.307510614,
+0.916713059,
+0.689479470,
+0.964866877,
+0.314298034,
+0.288778186,
+0.599537611,
+0.967559099,
+0.834389687
51 mean(isam)
= getMean(sample(lb(isam):ub(isam)))
53call setMeanMerged(meanMerged, mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
65 lb(isam)
= ub(isam
- 1)
+ 1
74+0.137246788,
+0.751488745,
+0.699134231
79 mean(isam)
= getMean(sample(lb(isam):ub(isam)))
81call setMeanMerged(meanMerged, mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
93 lb(isam)
= ub(isam
- 1)
+ 1
102+0.741233945,
+0.996601582,
+0.582655370,
+0.658535838,
+0.135546148,
+0.310473323,
+0.922929704
107 mean(isam)
= getMean(sample(lb(isam):ub(isam)))
109call setMeanMerged(meanMerged, mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
112call setMeanMerged(mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
121 lb(isam)
= ub(isam
- 1)
+ 1
130+0.635582447,
+0.967975497,
+0.525067806,
+0.369005561,
+0.929990470,
+0.620028973E-1,
+0.516469538,
+0.620910406
135 mean(isam)
= getMean(sample(lb(isam):ub(isam)))
137call setMeanMerged(meanMerged, mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
140call setMeanMerged(mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
149 lb(isam)
= ub(isam
- 1)
+ 1
158+0.680564106,
+0.557573080,
+0.567794979,
+0.315788269,
+0.482635140,
+0.290346384,
+0.892090559,
+0.681387901,
+0.449858785,
+0.501704633
163 mean(isam)
= getMean(sample(lb(isam):ub(isam)))
165call setMeanMerged(meanMerged, mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
168call setMeanMerged(mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
177 lb(isam)
= ub(isam
- 1)
+ 1
186+0.798053265,
+0.317064822,
+0.660533905E-1,
+0.323922753,
+0.527049899E-1,
+0.301640630,
+0.517327368
191 mean(isam)
= getMean(sample(lb(isam):ub(isam)))
193call setMeanMerged(meanMerged, mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
196call setMeanMerged(mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
205 lb(isam)
= ub(isam
- 1)
+ 1
214+0.353235006,
+0.482374251,
+0.249002993,
+0.528630197
219 mean(isam)
= getMean(sample(lb(isam):ub(isam)))
221call setMeanMerged(meanMerged, mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
224call setMeanMerged(mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
233 lb(isam)
= ub(isam
- 1)
+ 1
242+0.475852013,
+0.970653474,
+0.425833881,
+0.109913766
247 mean(isam)
= getMean(sample(lb(isam):ub(isam)))
249call setMeanMerged(meanMerged, mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
252call setMeanMerged(mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
261 lb(isam)
= ub(isam
- 1)
+ 1
270+0.888816833,
+0.364358544,
+0.116386950,
+0.606004477,
+0.859154940,
+0.897016525E-1,
+0.587547421,
+0.641957462,
+0.323110402,
+0.741591275
275 mean(isam)
= getMean(sample(lb(isam):ub(isam)))
277call setMeanMerged(meanMerged, mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
280call setMeanMerged(mean(
2), mean(
1), ub(
1)
/ real(ub(
2), TKG))
294 lb(isam)
= ub(isam
- 1)
+ 1
303+0.529742837,
+0.130858898,
+0.102629840,
+0.707129061,
+0.602123022
307mean(
0)
= getMean(sample, iweight)
311 mean(isam)
= getMean(sample(lb(isam):ub(isam)), iweight(lb(isam):ub(isam)))
313call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
316call setMeanMerged(mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
325 lb(isam)
= ub(isam
- 1)
+ 1
334+0.260408521E-1,
+0.347227991,
+0.558650494E-2,
+0.198853672,
+0.143130064,
+0.783467233,
+0.195628881,
+0.646918058,
+0.707936347
337+3,
+7,
+9,
+2,
+1,
+5,
+1,
+10,
+3
338mean(
0)
= getMean(sample, iweight)
342 mean(isam)
= getMean(sample(lb(isam):ub(isam)), iweight(lb(isam):ub(isam)))
344call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
347call setMeanMerged(mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
356 lb(isam)
= ub(isam
- 1)
+ 1
365+0.785254359,
+0.820207000E-1,
+0.477351427,
+0.348224461,
+0.752947748,
+0.151536286,
+0.290185213E-2,
+0.465423286,
+0.262132049,
+0.999331772,
+0.989185035,
+0.190662980,
+0.270816028,
+0.735470116
368+6,
+9,
+3,
+6,
+8,
+8,
+5,
+10,
+10,
+6,
+10,
+10,
+8,
+6
369mean(
0)
= getMean(sample, iweight)
373 mean(isam)
= getMean(sample(lb(isam):ub(isam)), iweight(lb(isam):ub(isam)))
375call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
378call setMeanMerged(mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
387 lb(isam)
= ub(isam
- 1)
+ 1
396+0.405363321,
+0.219169080,
+0.115935206,
+0.893036604,
+0.439766109,
+0.314403594,
+0.194016397
399+7,
+8,
+5,
+6,
+10,
+3,
+9
400mean(
0)
= getMean(sample, iweight)
404 mean(isam)
= getMean(sample(lb(isam):ub(isam)), iweight(lb(isam):ub(isam)))
406call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
409call setMeanMerged(mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
418 lb(isam)
= ub(isam
- 1)
+ 1
427+0.543904245,
+0.536824882,
+0.624632776,
+0.273061454,
+0.563830137,
+0.722926855,
+0.530096948,
+0.546086192
430+4,
+8,
+2,
+6,
+8,
+5,
+9,
+9
431mean(
0)
= getMean(sample, iweight)
435 mean(isam)
= getMean(sample(lb(isam):ub(isam)), iweight(lb(isam):ub(isam)))
437call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
440call setMeanMerged(mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
449 lb(isam)
= ub(isam
- 1)
+ 1
458+0.986591578E-1,
+0.672768056,
+0.332717836,
+0.497435331,
+0.283148646,
+0.489416480,
+0.539978087,
+0.864925265,
+0.137926459,
+0.385177195,
+0.163597465
461+6,
+4,
+6,
+10,
+4,
+5,
+9,
+7,
+9,
+7,
+1
462mean(
0)
= getMean(sample, iweight)
466 mean(isam)
= getMean(sample(lb(isam):ub(isam)), iweight(lb(isam):ub(isam)))
468call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
471call setMeanMerged(mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
480 lb(isam)
= ub(isam
- 1)
+ 1
489+0.851982236,
+0.604985714,
+0.529631197,
+0.241665244E-1,
+0.145293057,
+0.786244810,
+0.445813179,
+0.975437880,
+0.242908597E-1
492+8,
+8,
+2,
+1,
+2,
+5,
+9,
+2,
+10
493mean(
0)
= getMean(sample, iweight)
497 mean(isam)
= getMean(sample(lb(isam):ub(isam)), iweight(lb(isam):ub(isam)))
499call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
502call setMeanMerged(mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
511 lb(isam)
= ub(isam
- 1)
+ 1
520+0.583229065E-1,
+0.575166941E-1,
+0.716952503,
+0.137142956,
+0.655535400,
+0.125600100E-1,
+0.656503439E-2,
+0.333086848E-1,
+0.889003873E-1,
+0.132159591E-1,
+0.226697683,
+0.531509221
523+2,
+1,
+7,
+1,
+5,
+4,
+7,
+10,
+3,
+9,
+4,
+9
524mean(
0)
= getMean(sample, iweight)
528 mean(isam)
= getMean(sample(lb(isam):ub(isam)), iweight(lb(isam):ub(isam)))
530call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
533call setMeanMerged(mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
542 lb(isam)
= ub(isam
- 1)
+ 1
551+0.138380885,
+0.209199190E-1,
+0.565273046,
+0.583635688,
+0.390628874,
+0.219504833E-1,
+0.468839109,
+0.373739839,
+0.368111551,
+0.729558706,
+0.556981027
554+2,
+8,
+5,
+5,
+3,
+7,
+5,
+7,
+10,
+3,
+4
555mean(
0)
= getMean(sample, iweight)
559 mean(isam)
= getMean(sample(lb(isam):ub(isam)), iweight(lb(isam):ub(isam)))
561call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
564call setMeanMerged(mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
573 lb(isam)
= ub(isam
- 1)
+ 1
582+0.367946565,
+0.696588397,
+0.831677556,
+0.606933057,
+0.410512149,
+0.426655769,
+0.618426621,
+0.191297412
585+6,
+6,
+5,
+6,
+10,
+10,
+2,
+3
586mean(
0)
= getMean(sample, iweight)
590 mean(isam)
= getMean(sample(lb(isam):ub(isam)), iweight(lb(isam):ub(isam)))
592call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
595call setMeanMerged(mean(
2), mean(
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
609 lb(isam)
= ub(isam
- 1)
+ 1
618+0.816498518,
+0.352314949,
+0.991998017,
+0.354984343,
+0.192107677,
+0.745750010,
+0.174993217,
+0.663691819,
+0.957769454,
+0.440409541,
+0.706658185,
+0.991626382,
+0.618725419
621+1.10615659,
+1.31994212,
+1.33057630,
+1.12381935,
+1.73696411,
+1.12447643,
+1.59619319,
+1.08428323,
+1.72952819,
+1.19373214,
+1.60092497,
+1.45448375,
+1.48610151
622mean(
0)
= getMean(sample, rweight)
626 mean(isam)
= getMean(sample(lb(isam):ub(isam)), rweight(lb(isam):ub(isam)))
628call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
631call setMeanMerged(mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
640 lb(isam)
= ub(isam
- 1)
+ 1
649+0.326949120,
+0.130221248E-1,
+0.106977284,
+0.770356834,
+0.121972203,
+0.512139857,
+0.970971167,
+0.957111776,
+0.728469968,
+0.380789220,
+0.182469606
652+1.62355685,
+1.93732452,
+1.14670908,
+1.69368649,
+1.12115264,
+1.73624158,
+1.10357189,
+1.13573146,
+1.82946932,
+1.29178667,
+1.17068994
653mean(
0)
= getMean(sample, rweight)
657 mean(isam)
= getMean(sample(lb(isam):ub(isam)), rweight(lb(isam):ub(isam)))
659call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
662call setMeanMerged(mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
671 lb(isam)
= ub(isam
- 1)
+ 1
680+0.655874968,
+0.962270319,
+0.506555200,
+0.862263620,
+0.371947944,
+0.833317459,
+0.552777648,
+0.291698337,
+0.264723599,
+0.209277868E-1
683+1.50784481,
+1.02954125,
+1.82419872,
+1.47730899,
+1.06776643,
+1.21575379,
+1.92876911,
+1.69356465,
+1.76809287,
+1.22863412
684mean(
0)
= getMean(sample, rweight)
688 mean(isam)
= getMean(sample(lb(isam):ub(isam)), rweight(lb(isam):ub(isam)))
690call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
693call setMeanMerged(mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
702 lb(isam)
= ub(isam
- 1)
+ 1
711+0.919640422,
+0.621165693,
+0.550987661,
+0.852171898,
+0.207468450,
+0.964104354,
+0.639110267,
+0.925806761E-1,
+0.229824901,
+0.547481060,
+0.425703585
714+1.91305947,
+1.85918164,
+1.85565436,
+1.76868749,
+1.45037031,
+1.79018617,
+1.72742712,
+1.55930650,
+1.53618312,
+1.09344375,
+1.09488678
715mean(
0)
= getMean(sample, rweight)
719 mean(isam)
= getMean(sample(lb(isam):ub(isam)), rweight(lb(isam):ub(isam)))
721call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
724call setMeanMerged(mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
733 lb(isam)
= ub(isam
- 1)
+ 1
742+0.851543367,
+0.269641161,
+0.456869006E-1,
+0.103891313,
+0.930352211,
+0.348196745,
+0.356487036,
+0.713034868
745+1.95857728,
+1.87999690,
+1.31009710,
+1.73395562,
+1.06590068,
+1.13015723,
+1.13934636,
+1.00146794
746mean(
0)
= getMean(sample, rweight)
750 mean(isam)
= getMean(sample(lb(isam):ub(isam)), rweight(lb(isam):ub(isam)))
752call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
755call setMeanMerged(mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
764 lb(isam)
= ub(isam
- 1)
+ 1
773+0.228947461,
+0.619427204,
+0.625623167,
+0.399824381E-1,
+0.911087275,
+0.423422396,
+0.177434921,
+0.421735466,
+0.830706000,
+0.620913863,
+0.392937958
776+1.99123216,
+1.10332584,
+1.43443394,
+1.03051651,
+1.72494531,
+1.60555589,
+1.19284260,
+1.70435870,
+1.27554202,
+1.50471187,
+1.50804222
777mean(
0)
= getMean(sample, rweight)
781 mean(isam)
= getMean(sample(lb(isam):ub(isam)), rweight(lb(isam):ub(isam)))
783call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
786call setMeanMerged(mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
795 lb(isam)
= ub(isam
- 1)
+ 1
804+0.361727655,
+0.243362188E-1,
+0.565852106,
+0.733707488,
+0.362792492
807+1.57483029,
+1.01873493,
+1.18057227,
+1.69469142,
+1.19280517
808mean(
0)
= getMean(sample, rweight)
812 mean(isam)
= getMean(sample(lb(isam):ub(isam)), rweight(lb(isam):ub(isam)))
814call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
817call setMeanMerged(mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
826 lb(isam)
= ub(isam
- 1)
+ 1
835+0.657419622,
+0.284213781,
+0.911882877,
+0.794143260,
+0.974766314,
+0.244307816,
+0.637444496
838+1.57890582,
+1.90160871,
+1.75071692,
+1.57347023,
+1.04846370,
+1.92473733,
+1.46339679
839mean(
0)
= getMean(sample, rweight)
843 mean(isam)
= getMean(sample(lb(isam):ub(isam)), rweight(lb(isam):ub(isam)))
845call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
848call setMeanMerged(mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
857 lb(isam)
= ub(isam
- 1)
+ 1
866+0.454281151,
+0.404440045,
+0.253780544,
+0.705505073,
+0.427517593,
+0.350642204E-1,
+0.799993992,
+0.907202721,
+0.643802702
869+1.65689182,
+1.61500561,
+1.36019325,
+1.97537029,
+1.49237251,
+1.76360774,
+1.73595285,
+1.12234354,
+1.54058003
870mean(
0)
= getMean(sample, rweight)
874 mean(isam)
= getMean(sample(lb(isam):ub(isam)), rweight(lb(isam):ub(isam)))
876call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
879call setMeanMerged(mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
888 lb(isam)
= ub(isam
- 1)
+ 1
897+0.898700655,
+0.389996827,
+0.182400644,
+0.773691654,
+0.933500290,
+0.868889391,
+0.368318439,
+0.306130469,
+0.401165426,
+0.463283360
900+1.30116189,
+1.90349972,
+1.23029399,
+1.58494437,
+1.69477153,
+1.20750022,
+1.45630765,
+1.13042092,
+1.54378247,
+1.18306780
901mean(
0)
= getMean(sample, rweight)
905 mean(isam)
= getMean(sample(lb(isam):ub(isam)), rweight(lb(isam):ub(isam)))
907call setMeanMerged(meanMerged, mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
910call setMeanMerged(mean(
2), mean(
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
924 lb(isam)
= ub(isam
- 1)
+ 1
932call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
936+0.959194660,
-0.710529685,
+0.638371468,
+0.130456686,
+0.274960995E-1,
+0.812045455,
-0.338592768,
+0.883860826,
+0.388018250,
-0.584110498,
-0.262126207
937-0.465707183,
+0.777554750,
+0.751250982,
-0.824425936,
+0.479258895,
-0.647910118,
+0.106623173E-1,
-0.133435369,
-0.870394349,
+0.995368719,
+0.451290488
938+0.255483985,
-0.489567876,
-0.375812888,
-0.681036592,
+0.408239603,
+0.948996782,
-0.491009235,
+0.308610797,
+0.168108821,
+0.321161270,
+0.171044946
939+0.895979404E-1,
-0.964433193,
-0.528559685E-1,
+0.748432040,
-0.667501092,
-0.652509093,
+0.201177716,
-0.334750772,
+0.475425601,
-0.821736693,
-0.855085969
940mean(:,
0)
= getMean(sample, dim)
942+0.176734924,
+0.475921109E-1,
+0.494745113E-1,
-0.257658154
944 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
946call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
948+0.176734939,
+0.475921109E-1,
+0.494745076E-1,
-0.257658124
949call setMeanMerged(mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
951+0.176734939,
+0.475921109E-1,
+0.494745076E-1,
-0.257658124
953+0.176734924,
+0.475921109E-1,
+0.494745113E-1,
-0.257658154
958 lb(isam)
= ub(isam
- 1)
+ 1
966call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
970-0.743360400,
-0.412931442,
-0.697110176,
+0.620756149E-1,
+0.369139194,
+0.164871573,
-0.179028511E-1,
-0.962870479
971mean(:,
0)
= getMean(sample, dim)
975 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
977call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
980call setMeanMerged(mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
989 lb(isam)
= ub(isam
- 1)
+ 1
997call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1001+0.668461323E-1,
+0.748634100,
+0.464521766,
-0.799865484,
-0.745929480,
+0.663206935,
-0.110731125E-1,
-0.671849728
1002mean(:,
0)
= getMean(sample, dim)
1006 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
1008call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1011call setMeanMerged(mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1020 lb(isam)
= ub(isam
- 1)
+ 1
1028call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1032-0.740664005E-1,
-0.857483864,
+0.111626506,
+0.118040800,
+0.744359374,
+0.119488001,
+0.335914135
1033mean(:,
0)
= getMean(sample, dim)
1037 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
1039call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1042call setMeanMerged(mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1051 lb(isam)
= ub(isam
- 1)
+ 1
1059call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1063-0.173358560,
+0.915946484,
+0.164537907,
+0.587598085,
-0.439523697
1064mean(:,
0)
= getMean(sample, dim)
1068 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
1070call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1073call setMeanMerged(mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1082 lb(isam)
= ub(isam
- 1)
+ 1
1090call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1094-0.776083589,
+0.727857590,
+0.634563088,
-0.446850896,
+0.945649505
1095mean(:,
0)
= getMean(sample, dim)
1099 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
1101call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1104call setMeanMerged(mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1113 lb(isam)
= ub(isam
- 1)
+ 1
1121call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1125-0.777397394,
+0.690608382,
-0.705466628,
-0.487904906,
+0.992464662,
-0.933478117,
-0.744777679
1126mean(:,
0)
= getMean(sample, dim)
1130 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
1132call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1135call setMeanMerged(mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1144 lb(isam)
= ub(isam
- 1)
+ 1
1152call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1156+0.342716098,
+0.359631300,
+0.409963965,
-0.300135612E-1,
+0.497994423,
-0.220339298E-1,
-0.184091091,
+0.170267463
1157mean(:,
0)
= getMean(sample, dim)
1161 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
1163call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1166call setMeanMerged(mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1175 lb(isam)
= ub(isam
- 1)
+ 1
1183call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1187+0.497702479,
+0.284248590,
+0.314499140E-1,
+0.949180126
1188mean(:,
0)
= getMean(sample, dim)
1192 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
1194call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1197call setMeanMerged(mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1206 lb(isam)
= ub(isam
- 1)
+ 1
1214call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1218-0.762658596,
+0.441207886,
+0.111809134,
+0.865271807,
+0.132838130,
+0.838543534,
-0.697230577,
-0.468979597,
-0.637683272
1219+0.174437761,
-0.714493632,
-0.488917708,
+0.668080568,
-0.302784443,
-0.491571546,
+0.223920345,
-0.707399726,
-0.256299496
1220mean(:,
0)
= getMean(sample, dim)
1222-0.196535066E-1,
-0.210558653
1224 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
1226call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1228-0.196535066E-1,
-0.210558653
1229call setMeanMerged(mean(:,
2), mean(:,
1),
real(ub(
1), TKG)
/ real(ub(
2), TKG))
1231-0.196535066E-1,
-0.210558653
1233-0.196535066E-1,
-0.210558653
1243 lb(isam)
= ub(isam
- 1)
+ 1
1251call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1255-0.777980685,
+0.920617700,
-0.665005088,
+0.205028534,
+0.449424505,
+0.721747875,
+0.112909675,
-0.174124122,
-0.277031302
1256-0.673566222,
-0.554760575,
+0.582443476,
-0.356143594,
+0.531208515,
+0.162809014,
-0.347086191E-1,
-0.537560225,
+0.815578580
1259+4,
+6,
+5,
+1,
+5,
+10,
+4,
+2,
+6
1260mean(:,
0)
= getMean(sample,
2_IK, iweight)
1262+0.167385831,
+0.104578950
1264 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)),
2_IK, iweight(lb(isam):ub(isam)))
1266call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1268+0.167385831,
+0.104578972
1269call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1271+0.167385831,
+0.104578972
1273+0.167385831,
+0.104578950
1278 lb(isam)
= ub(isam
- 1)
+ 1
1286call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1290+0.144397855,
+0.451909304E-1,
-0.235148430,
-0.154173970,
+0.600418925,
+0.371675730,
+0.529384494,
-0.176618338
1291-0.699370384,
-0.718312502,
-0.239885449,
-0.401120543,
+0.905242562,
+0.595938444,
+0.754366875,
-0.809834242
1292+0.709512830,
-0.519693375,
-0.982616544,
-0.949329376,
-0.337597489,
-0.978132367,
+0.485882401,
+0.829034567
1295+10,
+9,
+4,
+8,
+2,
+8,
+10,
+3
1296mean(:,
0)
= getMean(sample,
2_IK, iweight)
1298+0.159536034,
-0.109904870,
-0.190028533
1300 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)),
2_IK, iweight(lb(isam):ub(isam)))
1302call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1304+0.159536019,
-0.109904915,
-0.190028504
1305call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1307+0.159536019,
-0.109904915,
-0.190028504
1309+0.159536034,
-0.109904870,
-0.190028533
1314 lb(isam)
= ub(isam
- 1)
+ 1
1322call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1326+0.443223715,
+0.915676236,
-0.375468016,
-0.456317425,
-0.543553829,
+0.722472191,
-0.824745774,
-0.721986294
1327-0.735986471,
-0.271528363,
-0.561799526,
-0.143196344,
-0.289244056,
-0.715440392,
+0.972285509,
+0.793827057
1330+4,
+8,
+5,
+5,
+10,
+2,
+2,
+4
1331mean(:,
0)
= getMean(sample,
2_IK, iweight)
1333-0.897163376E-1,
-0.196114883
1335 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)),
2_IK, iweight(lb(isam):ub(isam)))
1337call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1339-0.897163302E-1,
-0.196114868
1340call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1342-0.897163302E-1,
-0.196114868
1344-0.897163376E-1,
-0.196114883
1349 lb(isam)
= ub(isam
- 1)
+ 1
1357call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1361-0.650143385,
-0.434873819,
+0.707393408
1365mean(:,
0)
= getMean(sample,
2_IK, iweight)
1369 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)),
2_IK, iweight(lb(isam):ub(isam)))
1371call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1374call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1383 lb(isam)
= ub(isam
- 1)
+ 1
1391call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1395-0.257534146,
-0.206248760E-1,
+0.414295435
1399mean(:,
0)
= getMean(sample,
2_IK, iweight)
1403 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)),
2_IK, iweight(lb(isam):ub(isam)))
1405call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1408call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1417 lb(isam)
= ub(isam
- 1)
+ 1
1425call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1429-0.961017609E-1,
+0.870027781,
-0.725200295,
+0.515335321
1433mean(:,
0)
= getMean(sample,
2_IK, iweight)
1437 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)),
2_IK, iweight(lb(isam):ub(isam)))
1439call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1442call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1451 lb(isam)
= ub(isam
- 1)
+ 1
1459call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1463-0.213094234,
+0.329319596,
-0.251468539,
-0.934713602,
-0.200464249,
-0.416475892,
-0.391444087
1466+8,
+4,
+7,
+9,
+4,
+4,
+6
1467mean(:,
0)
= getMean(sample,
2_IK, iweight)
1471 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)),
2_IK, iweight(lb(isam):ub(isam)))
1473call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1476call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1485 lb(isam)
= ub(isam
- 1)
+ 1
1493call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1497+0.745304823,
-0.683014393,
+0.980411887,
-0.203457952,
+0.105829477,
-0.632041454,
-0.175224543,
-0.622153401,
-0.313490272,
-0.706428766,
+0.246935368,
+0.273543358
1498+0.496329308,
+0.661024332,
+0.849573851,
-0.521696210,
-0.620464802,
+0.264436364,
+0.817505956,
+0.616884947,
-0.237756848,
+0.129341722,
-0.680225015,
-0.431994796
1499+0.997373223,
-0.520158529,
-0.362969279,
+0.510083675,
+0.241760612,
-0.177526832,
+0.161094189,
+0.499121666,
-0.923519254,
-0.146237731,
-0.973134995,
-0.353827953
1500+0.716768742,
+0.576668024,
-0.606665015,
+0.401872516,
+0.204938889,
+0.978006124E-1,
-0.116649270,
-0.152186394,
-0.646051764,
-0.148245454,
-0.621037722,
+0.591425419
1501-0.804211855,
+0.463073850,
+0.303779006,
-0.161945939,
-0.515203476E-1,
-0.391865373,
-0.480176210,
-0.428533912,
+0.872934103,
-0.297682405,
+0.131642818E-2,
-0.806992531
1504+8,
+1,
+3,
+10,
+5,
+7,
+7,
+4,
+7,
+4,
+7,
+10
1505mean(:,
0)
= getMean(sample,
2_IK, iweight)
1507-0.271289572E-1,
-0.181674566E-1,
-0.388875641E-1,
+0.718520954E-1,
-0.245146185
1509 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)),
2_IK, iweight(lb(isam):ub(isam)))
1511call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1513-0.271289609E-1,
-0.181674585E-1,
-0.388875604E-1,
+0.718520880E-1,
-0.245146215
1514call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1516-0.271289609E-1,
-0.181674585E-1,
-0.388875604E-1,
+0.718520880E-1,
-0.245146215
1518-0.271289572E-1,
-0.181674566E-1,
-0.388875641E-1,
+0.718520954E-1,
-0.245146185
1523 lb(isam)
= ub(isam
- 1)
+ 1
1531call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1535+0.611000419,
+0.212515831,
-0.375352859,
+0.677173138,
+0.223523736,
-0.609845161,
+0.967451334,
-0.878303528,
+0.678430796E-1,
+0.788116097,
+0.916360378
1538+6,
+2,
+1,
+5,
+10,
+5,
+1,
+8,
+3,
+6,
+6
1539mean(:,
0)
= getMean(sample,
2_IK, iweight)
1543 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)),
2_IK, iweight(lb(isam):ub(isam)))
1545call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1548call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1557 lb(isam)
= ub(isam
- 1)
+ 1
1565call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1569-0.211490154,
+0.176915407,
-0.713280916,
-0.561638474,
-0.626951933,
+0.873261571,
+0.966665149,
-0.630244851,
-0.449101329
1570+0.555660129,
+0.177657962,
+0.746872544,
+0.196031928,
-0.758128166,
-0.887101412,
+0.138559818,
-0.598954439,
+0.581151009
1571-0.177578926E-1,
-0.753511906,
-0.605453372,
+0.773064494,
-0.565817237,
+0.890963435,
+0.294058681,
-0.914726257E-1,
+0.536434650E-1
1574+3,
+2,
+10,
+7,
+3,
+1,
+1,
+6,
+6
1575mean(:,
0)
= getMean(sample,
2_IK, iweight)
1577-0.457998097,
+0.198294863,
-0.754560083E-1
1579 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)),
2_IK, iweight(lb(isam):ub(isam)))
1581call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1583-0.457998037,
+0.198294848,
-0.754560158E-1
1584call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG))
1586-0.457998037,
+0.198294848,
-0.754560158E-1
1588-0.457998097,
+0.198294863,
-0.754560083E-1
1598 lb(isam)
= ub(isam
- 1)
+ 1
1606call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1610+0.470773816,
+0.967643261E-1,
+0.557694316,
-0.960001945E-1,
+0.428798914,
-0.577192068,
+0.654573560,
+0.764205337,
-0.795432091
1611-0.511312485E-2,
+0.856449366,
-0.695217013,
-0.947392106,
-0.761054873,
-0.830851674,
-0.144078493,
+0.188452601,
-0.463018298
1614+10.0000000,
+10.0000000,
+1.00000000,
+10.0000000,
+5.00000000,
+1.00000000,
+6.00000000,
+2.00000000,
+6.00000000
1615mean(:,
0)
= getMean(sample, dim, rweight)
1617+0.147512481,
-0.187403485
1619 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1621call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1623+0.147512481,
-0.187403485
1624call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1626+0.147512481,
-0.187403485
1628+0.147512481,
-0.187403485
1633 lb(isam)
= ub(isam
- 1)
+ 1
1641call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1645-0.299423218,
+0.232984424,
+0.790115118,
-0.830843568,
+0.609007120,
+0.459720731,
+0.306044221,
+0.702054501E-1,
+0.563648224,
+0.583520055
1646+0.836391211,
+0.806512833,
-0.870195389,
+0.277371407E-1,
+0.573816657,
-0.944130301,
+0.735152006,
+0.351682901,
+0.251731038,
+0.942224264E-1
1647-0.815138817,
+0.980282664,
-0.532855153,
+0.477959752,
-0.116626382,
-0.488353729,
-0.495965600,
-0.151460052,
+0.459408998,
+0.999310017E-1
1650+3.00000000,
+6.00000000,
+7.00000000,
+2.00000000,
+7.00000000,
+2.00000000,
+2.00000000,
+1.00000000,
+10.0000000,
+9.00000000
1651mean(:,
0)
= getMean(sample, dim, rweight)
1653+0.431055188,
+0.176083893,
+0.656979159E-1
1655 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1657call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1659+0.431055188,
+0.176083907,
+0.656979308E-1
1660call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1662+0.431055188,
+0.176083907,
+0.656979308E-1
1664+0.431055188,
+0.176083893,
+0.656979159E-1
1669 lb(isam)
= ub(isam
- 1)
+ 1
1677call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1681-0.284655213,
-0.399007440,
+0.363608003,
-0.142322659,
+0.839317083,
+0.584376454,
-0.142918706
1682-0.620559454,
+0.152183771E-1,
-0.818344712,
-0.142496943,
+0.946139455,
+0.257211566,
-0.311349869
1685+8.00000000,
+9.00000000,
+1.00000000,
+4.00000000,
+1.00000000,
+1.00000000,
+4.00000000
1686mean(:,
0)
= getMean(sample, dim, rweight)
1688-0.186499044,
-0.223496124
1690 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1692call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1694-0.186499029,
-0.223496124
1695call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1697-0.186499029,
-0.223496124
1699-0.186499044,
-0.223496124
1704 lb(isam)
= ub(isam
- 1)
+ 1
1712call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1716+0.749264002,
-0.695847034,
+0.615712762,
-0.724756479,
-0.416697741,
+0.420585632,
+0.178331733,
+0.426357031,
+0.622486234
1717-0.609037519,
+0.665992975,
-0.159351230,
+0.721003175,
+0.807496309,
-0.524388313,
+0.695737123,
-0.121226072,
+0.411437631
1720+3.00000000,
+5.00000000,
+4.00000000,
+1.00000000,
+4.00000000,
+3.00000000,
+10.0000000,
+5.00000000,
+10.0000000
1721mean(:,
0)
= getMean(sample, dim, rweight)
1723+0.227590710,
+0.304641932
1725 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1727call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1729+0.227590725,
+0.304641962
1730call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1732+0.227590725,
+0.304641962
1734+0.227590710,
+0.304641932
1739 lb(isam)
= ub(isam
- 1)
+ 1
1747call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1751+0.299856186,
+0.551514745,
+0.865416288,
-0.642320991,
+0.552765369,
-0.882482052,
+0.883689284,
-0.876765251E-1
1752+0.454836845,
-0.974622488,
+0.832802415,
+0.463223457,
-0.562297821,
+0.545973301,
-0.404309750,
+0.716274619
1755+3.00000000,
+2.00000000,
+10.0000000,
+9.00000000,
+6.00000000,
+5.00000000,
+3.00000000,
+3.00000000
1756mean(:,
0)
= getMean(sample, dim, rweight)
1758+0.150441274,
+0.297665209
1760 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1762call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1764+0.150441304,
+0.297665238
1765call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1767+0.150441304,
+0.297665238
1769+0.150441274,
+0.297665209
1774 lb(isam)
= ub(isam
- 1)
+ 1
1782call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1786-0.884524345,
+0.656505346,
-0.547052264,
+0.523308992,
-0.762376428,
-0.183162332,
-0.455511570,
-0.372542143E-1,
-0.181038499,
-0.545666099
1787+0.745436788,
-0.842442036,
-0.943564057,
+0.826775670,
-0.405719757,
-0.339901924,
+0.530972719,
-0.723436594,
-0.309309125,
-0.977234125
1790+1.00000000,
+7.00000000,
+6.00000000,
+5.00000000,
+8.00000000,
+6.00000000,
+3.00000000,
+9.00000000,
+10.0000000,
+1.00000000
1791mean(:,
0)
= getMean(sample, dim, rweight)
1793-0.146618128,
-0.374154836
1795 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1797call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1799-0.146618128,
-0.374154806
1800call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1802-0.146618128,
-0.374154806
1804-0.146618128,
-0.374154836
1809 lb(isam)
= ub(isam
- 1)
+ 1
1817call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1821-0.358620882E-1,
+0.994434714,
-0.867512107,
-0.524670362
1824+1.00000000,
+9.00000000,
+6.00000000,
+7.00000000
1825mean(:,
0)
= getMean(sample, dim, rweight)
1829 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1831call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1834call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1843 lb(isam)
= ub(isam
- 1)
+ 1
1851call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1855-0.397376299,
-0.605899453,
-0.332282901,
+0.163235307,
+0.413737535,
-0.629750967,
-0.134761810,
+0.380380392,
+0.197632074,
-0.302667022,
-0.250871778
1856-0.761517882,
-0.448336720,
-0.199189186E-1,
+0.921699405,
-0.627998114E-1,
-0.277904272E-1,
-0.574630857,
+0.950964093,
-0.193039060,
+0.207809091,
+0.389393091
1859+5.00000000,
+8.00000000,
+7.00000000,
+9.00000000,
+1.00000000,
+7.00000000,
+7.00000000,
+3.00000000,
+4.00000000,
+5.00000000,
+8.00000000
1860mean(:,
0)
= getMean(sample, dim, rweight)
1862-0.222147360,
+0.424493179E-1
1864 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1866call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1868-0.222147360,
+0.424493253E-1
1869call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1871-0.222147360,
+0.424493253E-1
1873-0.222147360,
+0.424493179E-1
1878 lb(isam)
= ub(isam
- 1)
+ 1
1886call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1890+0.832688212,
+0.417248368,
-0.412157774E-1,
-0.683036804,
+0.229055882E-1,
+0.669203997
1893+10.0000000,
+6.00000000,
+9.00000000,
+1.00000000,
+5.00000000,
+3.00000000
1894mean(:,
0)
= getMean(sample, dim, rweight)
1898 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1900call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1903call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1912 lb(isam)
= ub(isam
- 1)
+ 1
1920call setRebound(mean, [
1_IK,
0_IK], [ndim, nsam])
1924-0.989508390,
+0.886763334E-1,
-0.442037702,
-0.831042051,
-0.468018293,
-0.892808676,
-0.340943933,
+0.131268501E-1,
-0.315030217,
+0.380456686,
+0.313637376,
+0.566228628E-1,
-0.122164369
1925+0.840083241,
+0.361554623E-1,
+0.681064248,
+0.889984012,
-0.563441873,
+0.659806132,
+0.461213112,
+0.811031342,
-0.984293222E-1,
+0.591543674,
+0.395642996,
+0.658269048,
+0.657462716
1926-0.680930734,
+0.485520363E-1,
+0.964223504,
-0.399450779,
+0.582277536,
+0.709932327,
-0.549821019,
+0.586841702,
-0.408403039,
-0.485042930,
+0.182639956,
-0.151450872,
+0.549940705
1929+8.00000000,
+9.00000000,
+3.00000000,
+2.00000000,
+7.00000000,
+4.00000000,
+4.00000000,
+3.00000000,
+4.00000000,
+9.00000000,
+1.00000000,
+9.00000000,
+8.00000000
1930mean(:,
0)
= getMean(sample, dim, rweight)
1932-0.229126960,
+0.427496403,
+0.109903412E-1
1934 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1936call setMeanMerged(meanMerged, mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1938-0.229127020,
+0.427496433,
+0.109903403E-1
1939call setMeanMerged(mean(:,
2), mean(:,
1),
real(
sum(rweight(:ub(
1)))
/ sum(rweight), TKG))
1941-0.229127020,
+0.427496433,
+0.109903403E-1
1943-0.229126960,
+0.427496403,
+0.109903412E-1