17 integer(IK) ,
parameter :: nsam
= 2
18 integer(IK) ,
allocatable :: iweight(:)
19 integer(IK) :: isam, ndim, lb(nsam), ub(nsam)
20 integer(IK) :: dim, itry, ntry
= 10
21 type(display_type) :: disp
25 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
26 call disp%show(
"!Compute the biased merged covariance of a multivariate sample.")
27 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
31 real(TKG),
allocatable :: mean(:,:), cov(:,:,:), covMerged(:,:)
32 real(TKG),
allocatable :: sample(:,:)
35 call disp%show(
"dim = 2; lb(1) = 1; ub(1) = getUnifRand(2, 7)")
38 call disp%show(
" lb(isam) = ub(isam - 1) + 1")
39 call disp%show(
" ub(isam) = ub(isam - 1) + getUnifRand(2, 7)")
42 lb(isam)
= ub(isam
- 1)
+ 1
49 call disp%show(
"ndim = getUnifRand(1, minval(ub - lb + 1, 1))")
51 call disp%show(
"call setRebound(cov, [1_IK, 1_IK, 0_IK], [ndim, ndim, nsam])")
52 call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
53 call disp%show(
"call setRebound(mean, [1_IK, 1_IK], [ndim, nsam])")
54 call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
55 call disp%show(
"call setResized(covMerged, [ndim, ndim])")
57 call disp%show(
"sample = getUnifRand(-1., +1., ndim, ub(nsam))")
61 call disp%show(
"cov(:,:,0) = getCov(sample, dim)")
62 cov(:,:,
0)
= getCov(sample, dim)
63 call disp%show(
"cov(:,:,0) ! reference")
66 call disp%show(
" cov(:,:,isam) = getCov(sample(:,lb(isam):ub(isam)), dim)")
67 call disp%show(
" mean(:,isam) = getMean(sample(:,lb(isam):ub(isam)), dim)")
70 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim)
71 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
73 call disp%show(
"call setCovMerged(covMerged, cov(:,:,2), cov(:,:,1), mean(:,1) - mean(:,2), real(ub(1), TKG) / real(ub(2), TKG), uppDia)")
74 call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
77 call disp%show(
"call setCovMerged(covMerged, cov(:,:,2), cov(:,:,1), mean(:,1) - mean(:,2), real(ub(1), TKG) / real(ub(2), TKG), lowDia)")
78 call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), lowDia)
81 call disp%show(
"call setCovMerged(cov(:,:,2), cov(:,:,1), mean(:,1) - mean(:,2), real(ub(1), TKG) / real(ub(2), TKG), uppDia)")
82 call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
85 call disp%show(
"cov(:,:,0) ! reference")
92 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
93 call disp%show(
"!Compute the biased merged covariance of a frequency weighted multivariate sample.")
94 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
98 real(TKG),
allocatable :: mean(:,:), cov(:,:,:), covMerged(:,:)
99 real(TKG),
allocatable :: sample(:,:)
102 call disp%show(
"dim = 2; lb(1) = 1; ub(1) = getUnifRand(2, 7)")
105 call disp%show(
" lb(isam) = ub(isam - 1) + 1")
106 call disp%show(
" ub(isam) = ub(isam - 1) + getUnifRand(2, 7)")
109 lb(isam)
= ub(isam
- 1)
+ 1
116 call disp%show(
"ndim = getUnifRand(1, minval(ub - lb + 1, 1))")
118 call disp%show(
"call setRebound(cov, [1_IK, 1_IK, 0_IK], [ndim, ndim, nsam])")
119 call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
120 call disp%show(
"call setRebound(mean, [1_IK, 1_IK], [ndim, nsam])")
121 call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
122 call disp%show(
"call setResized(covMerged, [ndim, ndim])")
124 call disp%show(
"sample = getUnifRand(-1., +1., ndim, ub(nsam))")
128 call disp%show(
"iweight = getUnifRand(1, 10, size(sample, dim, IK))")
132 call disp%show(
"cov(:,:,0) = getCov(sample, dim, iweight)")
133 cov(:,:,
0)
= getCov(sample, dim, iweight)
134 call disp%show(
"cov(:,:,0) ! reference")
137 call disp%show(
" cov(:,:,isam) = getCov(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))")
138 call disp%show(
" mean(:,isam) = getMean(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))")
141 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
142 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
144 call disp%show(
"call setCovMerged(covMerged, cov(:,:,2), cov(:,:,1), mean(:,1) - mean(:,2), real(sum(iweight(:ub(1))), TKG) / real(sum(iweight), TKG), uppDia)")
145 call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
148 call disp%show(
"call setCovMerged(covMerged, cov(:,:,2), cov(:,:,1), mean(:,1) - mean(:,2), real(sum(iweight(:ub(1))), TKG) / real(sum(iweight), TKG), lowDia)")
149 call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), lowDia)
152 call disp%show(
"call setCovMerged(cov(:,:,2), cov(:,:,1), mean(:,1) - mean(:,2), real(sum(iweight(:ub(1))), TKG) / real(sum(iweight), TKG), uppDia)")
153 call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
156 call disp%show(
"cov(:,:,0) ! reference")
163 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
164 call disp%show(
"!Compute the biased merged covariance of a reliability weighted multivariate sample.")
165 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
169 real(TKG),
allocatable :: mean(:,:), cov(:,:,:), covMerged(:,:)
170 real(TKG),
allocatable :: sample(:,:)
171 real(TKG),
allocatable :: rweight(:)
174 call disp%show(
"dim = 2; lb(1) = 1; ub(1) = getUnifRand(2, 7)")
177 call disp%show(
" lb(isam) = ub(isam - 1) + 1")
178 call disp%show(
" ub(isam) = ub(isam - 1) + getUnifRand(2, 7)")
181 lb(isam)
= ub(isam
- 1)
+ 1
188 call disp%show(
"ndim = getUnifRand(1, minval(ub - lb + 1, 1))")
190 call disp%show(
"call setRebound(cov, [1_IK, 1_IK, 0_IK], [ndim, ndim, nsam])")
191 call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
192 call disp%show(
"call setRebound(mean, [1_IK, 1_IK], [ndim, nsam])")
193 call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
194 call disp%show(
"call setResized(covMerged, [ndim, ndim])")
196 call disp%show(
"sample = getUnifRand(-1., +1., ndim, ub(nsam))")
200 call disp%show(
"rweight = getUnifRand(1., 2., size(sample, dim, IK))")
204 call disp%show(
"cov(:,:,0) = getCov(sample, dim, rweight)")
205 cov(:,:,
0)
= getCov(sample, dim, rweight)
206 call disp%show(
"cov(:,:,0) ! reference")
209 call disp%show(
" cov(:,:,isam) = getCov(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))")
210 call disp%show(
" mean(:,isam) = getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))")
213 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
214 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
216 call disp%show(
"call setCovMerged(covMerged, cov(:,:,2), cov(:,:,1), mean(:,1) - mean(:,2), real(sum(rweight(:ub(1))), TKG) / real(sum(rweight), TKG), uppDia)")
217 call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), uppDia)
220 call disp%show(
"call setCovMerged(covMerged, cov(:,:,2), cov(:,:,1), mean(:,1) - mean(:,2), real(sum(rweight(:ub(1))), TKG) / real(sum(rweight), TKG), lowDia)")
221 call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
224 call disp%show(
"call setCovMerged(cov(:,:,2), cov(:,:,1), mean(:,1) - mean(:,2), real(sum(rweight(:ub(1))), TKG) / real(sum(rweight), TKG), lowDia)")
225 call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
228 call disp%show(
"cov(:,:,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 (optionally unbiased) covariance matrix of a pair of (potentially weighted) t...
Generate and return the (weighted) mean of an input sample of nsam observations with ndim = 1 or 2 at...
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.
This module contains classes and procedures for computing the first moment (i.e., the statistical mea...
Generate and return an object of type display_type.
9 lb(isam)
= ub(isam
- 1)
+ 1
17call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
18call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
22+0.437240243,
-0.509490132,
+0.282073259,
+0.287244081,
+0.876468897,
+0.808184624,
-0.120214701,
+0.498818636
23-0.461711287,
+0.660466790,
-0.166719437,
+0.446940184,
-0.578876972,
+0.581213236,
+0.968951106,
-0.628086090
24cov(:,:,
0)
= getCov(sample, dim)
26+0.184757173,
-0.148447484
27-0.148447484,
+0.349839181
29 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim)
30 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
32call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
34+0.184757188,
-0.148447484
35+0.307599026E-40,
+0.349839121
36call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), lowDia)
38+0.184757188,
-0.148447484
39-0.148447484,
+0.349839121
40call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
42+0.184757188,
-0.148447484
43-0.247154817,
+0.349839121
45+0.184757173,
-0.148447484
46-0.148447484,
+0.349839181
51 lb(isam)
= ub(isam
- 1)
+ 1
59call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
60call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
64-0.802463293E-1,
+0.328312397,
-0.492934108,
+0.639440894,
+0.472739220,
+0.960628271,
-0.764507771,
-0.748263717,
+0.865222931,
+0.976664305,
+0.926007509
65cov(:,:,
0)
= getCov(sample, dim)
69 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim)
70 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
72call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
75call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), lowDia)
78call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
87 lb(isam)
= ub(isam
- 1)
+ 1
95call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
96call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
100-0.786222816,
+0.398960471,
-0.736645579,
-0.108120918,
+0.429905772,
+0.605038047,
-0.997594476,
+0.561249256E-2,
-0.821478009,
-0.784788966,
+0.800313354
101cov(:,:,
0)
= getCov(sample, dim)
105 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim)
106 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
108call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
111call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), lowDia)
114call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
123 lb(isam)
= ub(isam
- 1)
+ 1
131call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
132call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
136+0.856189251,
-0.841922164,
-0.602826476,
+0.140571594E-2,
-0.660218477,
-0.180970430,
+0.657186985,
+0.422808647,
-0.627171636,
+0.997480154E-1,
-0.671745300,
+0.604941130
137-0.257167578,
-0.403482080,
+0.588209867,
-0.273119211,
-0.470341086,
-0.605908990,
+0.726447582,
+0.508324385,
+0.312461972,
+0.853343844,
+0.980333686,
-0.209288597
138-0.992402196,
-0.260337234,
+0.833070993,
+0.593615770,
-0.399094224,
+0.394656539,
-0.451255083,
+0.289817572,
+0.766197801,
+0.301555872,
+0.276217937,
-0.868330956
139-0.505458951,
-0.670212388,
-0.757353663,
+0.949979186,
-0.744159222E-1,
+0.915979505,
-0.393143177,
+0.975389481E-1,
+0.299537539,
-0.148490667E-1,
+0.194208622,
-0.990006328
140cov(:,:,
0)
= getCov(sample, dim)
142+0.335920572,
+0.987617206E-2,
-0.186426491,
-0.614627227E-1
143+0.987617206E-2,
+0.299959540,
+0.111246869,
-0.369814336E-1
144-0.186426491,
+0.111246869,
+0.349206060,
+0.198542640
145-0.614627227E-1,
-0.369814336E-1,
+0.198542640,
+0.351849973
147 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim)
148 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
150call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
152+0.335920483,
+0.987614691E-2,
-0.186426342,
-0.614626482E-1
153+0.00000000,
+0.299959481,
+0.111246891,
-0.369814187E-1
154+0.00000000,
+0.00000000,
+0.349205971,
+0.198542565
155+0.00000000,
+0.00000000,
+0.00000000,
+0.351849973
156call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), lowDia)
158+0.335920483,
+0.987614691E-2,
-0.186426342,
-0.614626482E-1
159+0.987614691E-2,
+0.299959481,
+0.111246891,
-0.369814187E-1
160-0.186426342,
+0.111246891,
+0.349205971,
+0.198542565
161-0.614626482E-1,
-0.369814187E-1,
+0.198542565,
+0.351849973
162call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
164+0.335920483,
+0.987614691E-2,
-0.186426342,
-0.614626482E-1
165-0.767387748E-1,
+0.299959481,
+0.111246891,
-0.369814187E-1
166-0.226792455,
+0.100445889,
+0.349205971,
+0.198542565
167-0.178418741,
+0.111487411,
+0.231040940,
+0.351849973
169+0.335920572,
+0.987617206E-2,
-0.186426491,
-0.614627227E-1
170+0.987617206E-2,
+0.299959540,
+0.111246869,
-0.369814336E-1
171-0.186426491,
+0.111246869,
+0.349206060,
+0.198542640
172-0.614627227E-1,
-0.369814336E-1,
+0.198542640,
+0.351849973
177 lb(isam)
= ub(isam
- 1)
+ 1
185call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
186call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
190+0.565130711E-1,
+0.604866743E-1,
+0.764050245,
-0.767296433,
-0.171962023,
-0.552497029,
-0.634489059E-1,
-0.398125887,
-0.557760119,
-0.535832763
191+0.421899557,
+0.646954656,
-0.734021664,
+0.600680470,
-0.283736110,
-0.728355527,
-0.996326685,
+0.172049880,
+0.669707537,
-0.255620480E-1
192cov(:,:,
0)
= getCov(sample, dim)
194+0.180583522,
-0.928269327E-1
195-0.928269327E-1,
+0.357200235
197 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim)
198 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
200call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
202+0.180583537,
-0.928269327E-1
203+0.987614691E-2,
+0.357200205
204call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), lowDia)
206+0.180583537,
-0.928269327E-1
207-0.928269327E-1,
+0.357200205
208call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
210+0.180583537,
-0.928269327E-1
211-0.749734556E-2,
+0.357200205
213+0.180583522,
-0.928269327E-1
214-0.928269327E-1,
+0.357200235
219 lb(isam)
= ub(isam
- 1)
+ 1
227call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
228call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
232-0.336373925,
-0.731604457,
+0.813004136,
-0.851869583E-1,
-0.438123941E-1,
-0.288273335,
+0.697150588,
-0.770933867,
-0.663641095
233cov(:,:,
0)
= getCov(sample, dim)
237 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim)
238 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
240call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
243call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), lowDia)
246call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
255 lb(isam)
= ub(isam
- 1)
+ 1
263call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
264call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
268-0.487814307,
+0.335594654,
+0.834491849,
+0.350853205E-1,
-0.405078053,
+0.653033733,
-0.649943352,
-0.417102695,
+0.738690853
269-0.232359409,
-0.494017243,
+0.143267870,
+0.554116249,
+0.960776806,
-0.754070282,
-0.216568351,
-0.888762832,
+0.314500332E-1
270cov(:,:,
0)
= getCov(sample, dim)
272+0.303968996,
-0.218831245E-1
273-0.218831245E-1,
+0.318431526
275 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim)
276 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
278call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
280+0.303968996,
-0.218831189E-1
281+0.307599026E-40,
+0.318431526
282call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), lowDia)
284+0.303968996,
-0.218831189E-1
285-0.218831189E-1,
+0.318431526
286call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
288+0.303968996,
-0.218831189E-1
289+0.139052093,
+0.318431526
291+0.303968996,
-0.218831245E-1
292-0.218831245E-1,
+0.318431526
297 lb(isam)
= ub(isam
- 1)
+ 1
305call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
306call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
310-0.229614854,
-0.957527518,
-0.910255432,
+0.563752651E-2,
+0.842261910,
+0.400862336,
+0.592784524,
+0.164602995,
+0.342426538
311cov(:,:,
0)
= getCov(sample, dim)
315 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim)
316 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
318call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
321call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), lowDia)
324call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
333 lb(isam)
= ub(isam
- 1)
+ 1
341call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
342call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
346-0.446139693,
+0.376419902,
+0.832920074E-1,
-0.425267816,
+0.877103925,
-0.871086717,
+0.119835019,
-0.987196565,
-0.783539057,
-0.875635743,
+0.865844965
347-0.208117366,
+0.686280966,
+0.408572674,
-0.336873889,
-0.712618589,
+0.626461506,
+0.531866789,
-0.828013539,
+0.856381536,
-0.386170149,
-0.860902429
348+0.183855057,
-0.133424163,
+0.732053280,
-0.559751630,
-0.524893522,
+0.788945675,
-0.643589973,
+0.368193388E-1,
+0.220641494,
+0.555992723,
-0.431228876
349cov(:,:,
0)
= getCov(sample, dim)
351+0.435248315,
-0.801191479E-1,
-0.189553574
352-0.801191479E-1,
+0.389329225,
+0.109399885
353-0.189553574,
+0.109399885,
+0.250317305
355 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim)
356 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
358call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
360+0.435248315,
-0.801191553E-1,
-0.189553559
361+0.307599026E-40,
+0.389329195,
+0.109399930
362+0.00000000,
-0.288273335,
+0.250317305
363call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), lowDia)
365+0.435248315,
-0.801191553E-1,
-0.189553559
366-0.801191553E-1,
+0.389329195,
+0.109399930
367-0.189553559,
+0.109399930,
+0.250317305
368call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
370+0.435248315,
-0.801191553E-1,
-0.189553559
371-0.850497708E-1,
+0.389329195,
+0.109399930
372-0.246677548,
-0.126404762E-1,
+0.250317305
374+0.435248315,
-0.801191479E-1,
-0.189553574
375-0.801191479E-1,
+0.389329225,
+0.109399885
376-0.189553574,
+0.109399885,
+0.250317305
381 lb(isam)
= ub(isam
- 1)
+ 1
389call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
390call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
394-0.177401304,
-0.170461059,
+0.584437490,
-0.170793414,
+0.596334219,
-0.847934127,
+0.935771823,
+0.772306442,
+0.565444231E-1,
-0.447962999,
+0.312679410,
-0.882995129E-2
395+0.817470074,
-0.257990956,
+0.795777440,
+0.741047859E-1,
-0.100444317,
+0.946513772,
+0.974837542,
-0.337901115,
-0.805449009,
-0.870478392,
+0.421383977,
+0.848143101E-1
396-0.362956166,
+0.127947330E-1,
+0.999591231,
-0.102045536E-1,
+0.814240456,
-0.927634478,
-0.738519788,
-0.198680997,
+0.330262542,
+0.416713595,
+0.683423519,
-0.421222091
397-0.356921077,
+0.460367441,
+0.637933493,
-0.863015056,
+0.359622598,
+0.225723147,
-0.813788176E-1,
+0.137403965,
+0.113751769,
-0.439707041,
+0.830465674,
+0.365170717
398cov(:,:,
0)
= getCov(sample, dim)
400+0.259015411,
+0.339356363E-1,
+0.878078789E-1,
+0.709858090E-1
401+0.339356363E-1,
+0.390183687,
-0.131768554,
+0.462670922E-1
402+0.878078789E-1,
-0.131768554,
+0.344750345,
+0.914173350E-1
403+0.709858090E-1,
+0.462670922E-1,
+0.914173350E-1,
+0.213774800
405 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim)
406 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim)
408call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
410+0.259015411,
+0.339356288E-1,
+0.878078863E-1,
+0.709858313E-1
411-0.801191553E-1,
+0.390183806,
-0.131768554,
+0.462670811E-1
412-0.189553559,
+0.109399930,
+0.344750375,
+0.914173350E-1
413+0.00000000,
-0.369814187E-1,
+0.198542565,
+0.213774815
414call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), lowDia)
416+0.259015411,
+0.339356288E-1,
+0.878078863E-1,
+0.709858313E-1
417+0.339356288E-1,
+0.390183806,
-0.131768554,
+0.462670811E-1
418+0.878078863E-1,
-0.131768554,
+0.344750375,
+0.914173350E-1
419+0.709858313E-1,
+0.462670811E-1,
+0.914173350E-1,
+0.213774815
420call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(ub(
1), TKG)
/ real(ub(
2), TKG), uppDia)
422+0.259015411,
+0.339356288E-1,
+0.878078863E-1,
+0.709858313E-1
423+0.841821283E-1,
+0.390183806,
-0.131768554,
+0.462670811E-1
424-0.430048220E-1,
-0.129942792E-1,
+0.344750375,
+0.914173350E-1
425+0.856099650E-1,
+0.185856864,
+0.155060915E-1,
+0.213774815
427+0.259015411,
+0.339356363E-1,
+0.878078789E-1,
+0.709858090E-1
428+0.339356363E-1,
+0.390183687,
-0.131768554,
+0.462670922E-1
429+0.878078789E-1,
-0.131768554,
+0.344750345,
+0.914173350E-1
430+0.709858090E-1,
+0.462670922E-1,
+0.914173350E-1,
+0.213774800
440 lb(isam)
= ub(isam
- 1)
+ 1
448call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
449call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
453+0.969636440E-2,
+0.305743933,
-0.974210262,
+0.312156320,
+0.533624530,
+0.416775107,
-0.825224757
454-0.487743378,
+0.640795588,
-0.165283918,
+0.638889194,
-0.344024777,
+0.954592109,
-0.519934893E-1
455-0.403031707,
-0.293452263,
-0.655549407,
+0.498218775,
+0.715052962,
-0.845716357,
+0.642480016
458+3,
+10,
+8,
+4,
+5,
+9,
+2
459cov(:,:,
0)
= getCov(sample, dim, iweight)
461+0.322554708,
+0.155263871,
+0.688224584E-1
462+0.155263871,
+0.277615517,
-0.109992489
463+0.688224584E-1,
-0.109992489,
+0.319208324
465 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
466 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
468call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
470+0.322554708,
+0.155263871,
+0.688224584E-1
471+0.307599026E-40,
+0.277615428,
-0.109992467
472+0.00000000,
-0.301526040,
+0.319208294
473call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), lowDia)
475+0.322554708,
+0.155263871,
+0.688224584E-1
476+0.155263871,
+0.277615428,
-0.109992467
477+0.688224584E-1,
-0.109992467,
+0.319208294
478call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
480+0.322554708,
+0.155263871,
+0.688224584E-1
481+0.457286835E-1,
+0.277615428,
-0.109992467
482-0.940511078E-1,
-0.462436438,
+0.319208294
484+0.322554708,
+0.155263871,
+0.688224584E-1
485+0.155263871,
+0.277615517,
-0.109992489
486+0.688224584E-1,
-0.109992489,
+0.319208324
491 lb(isam)
= ub(isam
- 1)
+ 1
499call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
500call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
504-0.646307588,
+0.698085308,
-0.109918118,
+0.894554853,
-0.115206599,
+0.521912694,
+0.516319036,
+0.661313534E-2,
+0.136246085,
+0.310346484,
+0.895836711
507+3,
+2,
+4,
+1,
+7,
+4,
+6,
+5,
+8,
+8,
+9
508cov(:,:,
0)
= getCov(sample, dim, iweight)
512 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
513 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
515call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
518call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), lowDia)
521call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
530 lb(isam)
= ub(isam
- 1)
+ 1
538call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
539call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
543+0.873802304,
+0.986678004,
+0.835249424,
-0.175638080,
-0.922498345
544+0.361487627,
+0.491217613,
+0.301380634,
+0.241978765,
+0.506595731
548cov(:,:,
0)
= getCov(sample, dim, iweight)
550+0.644975901,
-0.494365655E-1
551-0.494365655E-1,
+0.111880973E-1
553 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
554 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
556call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
558+0.644975841,
-0.494365580E-1
559+0.307599026E-40,
+0.111880973E-1
560call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), lowDia)
562+0.644975841,
-0.494365580E-1
563-0.494365580E-1,
+0.111880973E-1
564call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
566+0.644975841,
-0.494365580E-1
567-0.677264184E-1,
+0.111880973E-1
569+0.644975901,
-0.494365655E-1
570-0.494365655E-1,
+0.111880973E-1
575 lb(isam)
= ub(isam
- 1)
+ 1
583call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
584call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
588+0.397652388E-1,
-0.259557009,
-0.538977504,
+0.320966244E-1,
+0.780536413,
+0.433959723,
+0.307669759,
-0.715632915,
+0.822037697,
+0.969168305,
+0.443890929,
-0.176961303
591+3,
+7,
+7,
+8,
+1,
+8,
+3,
+10,
+6,
+3,
+4,
+1
592cov(:,:,
0)
= getCov(sample, dim, iweight)
596 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
597 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
599call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
602call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), lowDia)
605call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
614 lb(isam)
= ub(isam
- 1)
+ 1
622call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
623call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
627+0.471642971,
-0.430481195,
-0.156780124,
-0.595144033,
-0.633973241,
-0.350999475,
+0.400300384
628-0.967359185,
-0.380933285E-1,
-0.540009975,
+0.150626898,
+0.860162973E-1,
+0.920194387E-1,
-0.232621789
631+7,
+9,
+5,
+3,
+8,
+9,
+7
632cov(:,:,
0)
= getCov(sample, dim, iweight)
634+0.173456475,
-0.124214932
635-0.124214932,
+0.140285343
637 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
638 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
640call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
642+0.173456430,
-0.124214955
643+0.307599026E-40,
+0.140285373
644call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), lowDia)
646+0.173456430,
-0.124214955
647-0.124214955,
+0.140285373
648call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
650+0.173456430,
-0.124214955
651-0.566969700E-1,
+0.140285373
653+0.173456475,
-0.124214932
654-0.124214932,
+0.140285343
659 lb(isam)
= ub(isam
- 1)
+ 1
667call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
668call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
672-0.453070283,
+0.220144272,
-0.394856095,
-0.229476452,
-0.156873703,
+0.703125119,
-0.996817589,
-0.388846636,
+0.624248624,
+0.717509151,
-0.415325999
673-0.296703219,
-0.643605947,
-0.183574677,
+0.541148305,
-0.802192450,
+0.700549603,
-0.670517325,
+0.420852542,
+0.674514771E-1,
-0.244485974,
+0.663476706
676+8,
+9,
+1,
+6,
+6,
+2,
+3,
+3,
+8,
+1,
+5
677cov(:,:,
0)
= getCov(sample, dim, iweight)
679+0.218925819,
+0.151605839E-1
680+0.151605839E-1,
+0.281323403
682 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
683 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
685call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
687+0.218925774,
+0.151605960E-1
688-0.124214955,
+0.281323373
689call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), lowDia)
691+0.218925774,
+0.151605960E-1
692+0.151605960E-1,
+0.281323373
693call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
695+0.218925774,
+0.151605960E-1
696+0.186300278E-1,
+0.281323373
698+0.218925819,
+0.151605839E-1
699+0.151605839E-1,
+0.281323403
704 lb(isam)
= ub(isam
- 1)
+ 1
712call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
713call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
717+0.813121796,
-0.871680737,
-0.403814435,
+0.733884811,
-0.839575648,
+0.579057455,
+0.495270014,
+0.595306754,
-0.375130177E-1
718+0.891590714,
-0.694035053,
-0.260246515,
-0.332813263E-1,
-0.380794048,
+0.445414901,
+0.301734328,
+0.470428467,
-0.493112326
719-0.684803247,
+0.108013272,
-0.448408961,
+0.942111254,
+0.321065426,
+0.743355513,
+0.965480208,
+0.108347058,
+0.844238758
720+0.311780453,
+0.358275175,
+0.182612538,
+0.582923055,
-0.117170811E-2,
-0.508075953,
-0.279668689,
-0.155853152,
+0.285991669
723+6,
+2,
+1,
+4,
+6,
+2,
+9,
+6,
+7
724cov(:,:,
0)
= getCov(sample, dim, iweight)
726+0.347090065,
+0.237425908,
-0.206882115E-1,
-0.118817948E-1
727+0.237425908,
+0.244165689,
-0.131911606,
-0.430569761E-1
728-0.206882115E-1,
-0.131911606,
+0.329096228,
-0.417070612E-1
729-0.118817948E-1,
-0.430569761E-1,
-0.417070612E-1,
+0.932646021E-1
731 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
732 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
734call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
736+0.347090095,
+0.237425894,
-0.206881836E-1,
-0.118818153E-1
737+0.151605960E-1,
+0.244165689,
-0.131911442,
-0.430569984E-1
738+0.00000000,
-0.131768554,
+0.329096049,
-0.417070016E-1
739+0.00000000,
+0.462670811E-1,
+0.914173350E-1,
+0.932645798E-1
740call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), lowDia)
742+0.347090095,
+0.237425894,
-0.206881836E-1,
-0.118818153E-1
743+0.237425894,
+0.244165689,
-0.131911442,
-0.430569984E-1
744-0.206881836E-1,
-0.131911442,
+0.329096049,
-0.417070016E-1
745-0.118818153E-1,
-0.430569984E-1,
-0.417070016E-1,
+0.932645798E-1
746call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
748+0.347090095,
+0.237425894,
-0.206881836E-1,
-0.118818153E-1
749+0.106810600,
+0.244165689,
-0.131911442,
-0.430569984E-1
750-0.372382030E-1,
-0.583472960E-1,
+0.329096049,
-0.417070016E-1
751-0.645684823E-1,
-0.972173214E-1,
+0.513126468E-2,
+0.932645798E-1
753+0.347090065,
+0.237425908,
-0.206882115E-1,
-0.118817948E-1
754+0.237425908,
+0.244165689,
-0.131911606,
-0.430569761E-1
755-0.206882115E-1,
-0.131911606,
+0.329096228,
-0.417070612E-1
756-0.118817948E-1,
-0.430569761E-1,
-0.417070612E-1,
+0.932646021E-1
761 lb(isam)
= ub(isam
- 1)
+ 1
769call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
770call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
774-0.805975676,
-0.981281757,
-0.581297874,
-0.953873515,
-0.902015209,
+0.805794239,
+0.663238406,
+0.580360770,
-0.507354140
775+0.886942506,
+0.310795426,
-0.892228484,
-0.785974741,
+0.615517974,
+0.161004782,
+0.538974643,
+0.581898332,
+0.507910609
778+1,
+2,
+8,
+7,
+2,
+7,
+2,
+4,
+4
779cov(:,:,
0)
= getCov(sample, dim, iweight)
781+0.515104175,
+0.219625473
782+0.219625473,
+0.412931085
784 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
785 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
787call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
789+0.515104115,
+0.219625413
790+0.237425894,
+0.412931263
791call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), lowDia)
793+0.515104115,
+0.219625413
794+0.219625413,
+0.412931263
795call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
797+0.515104115,
+0.219625413
798+0.201193877E-1,
+0.412931263
800+0.515104175,
+0.219625473
801+0.219625473,
+0.412931085
806 lb(isam)
= ub(isam
- 1)
+ 1
814call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
815call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
819-0.561125278,
-0.284564376,
+0.125218987,
-0.168395400,
+0.877732277,
-0.291383505,
+0.238629818,
+0.834685206,
+0.994071007,
+0.623575330
820+0.389709592,
-0.178529859,
-0.740751147,
-0.123763084E-2,
-0.568816662,
-0.390716553,
+0.512215972,
-0.558581471,
+0.576901078,
-0.770619035
821+0.912296176,
+0.962348700,
-0.239195824,
-0.153777003,
+0.506079197,
+0.838832855E-1,
-0.987587094,
+0.803172708,
+0.613986969,
+0.260746717
822-0.928229332,
-0.141882420,
-0.370680332,
-0.627827644,
+0.218896389,
-0.537421703,
-0.103929043E-1,
+0.823149323,
-0.109847426,
-0.598375916
825+7,
+7,
+3,
+4,
+2,
+1,
+2,
+9,
+1,
+6
826cov(:,:,
0)
= getCov(sample, dim, iweight)
828+0.303562313,
-0.158064619,
-0.316820145E-1,
+0.238386020
829-0.158064619,
+0.200517938,
+0.725471415E-2,
-0.115787551
830-0.316820145E-1,
+0.725471415E-2,
+0.281115592,
+0.607889742E-1
831+0.238386020,
-0.115787551,
+0.607889742E-1,
+0.367995232
833 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
834 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
836call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
838+0.303562373,
-0.158064634,
-0.316820256E-1,
+0.238386154
839+0.219625413,
+0.200517878,
+0.725473464E-2,
-0.115787603
840+0.00000000,
+0.965480208,
+0.281115592,
+0.607889481E-1
841+0.00000000,
-0.279668689,
-0.155853152,
+0.367995232
842call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), lowDia)
844+0.303562373,
-0.158064634,
-0.316820256E-1,
+0.238386154
845-0.158064634,
+0.200517878,
+0.725473464E-2,
-0.115787603
846-0.316820256E-1,
+0.725473464E-2,
+0.281115592,
+0.607889481E-1
847+0.238386154,
-0.115787603,
+0.607889481E-1,
+0.367995232
848call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
850+0.303562373,
-0.158064634,
-0.316820256E-1,
+0.238386154
851-0.328560434E-1,
+0.200517878,
+0.725473464E-2,
-0.115787603
852+0.116075113,
-0.136575684,
+0.281115592,
+0.607889481E-1
853+0.101363383,
+0.862368476E-2,
+0.193473294,
+0.367995232
855+0.303562313,
-0.158064619,
-0.316820145E-1,
+0.238386020
856-0.158064619,
+0.200517938,
+0.725471415E-2,
-0.115787551
857-0.316820145E-1,
+0.725471415E-2,
+0.281115592,
+0.607889742E-1
858+0.238386020,
-0.115787551,
+0.607889742E-1,
+0.367995232
863 lb(isam)
= ub(isam
- 1)
+ 1
871call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
872call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
876+0.951781154,
+0.972033024,
+0.783034205,
-0.831316352,
-0.881828308,
-0.589258313,
-0.606879115,
-0.801753283,
+0.247774124,
+0.429144502,
-0.692235827
879+6,
+5,
+2,
+3,
+10,
+7,
+9,
+7,
+10,
+8,
+1
880cov(:,:,
0)
= getCov(sample, dim, iweight)
884 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
885 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, iweight(lb(isam):ub(isam)))
887call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
890call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), lowDia)
893call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(iweight(:ub(
1))), TKG)
/ real(
sum(iweight), TKG), uppDia)
907 lb(isam)
= ub(isam
- 1)
+ 1
915call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
916call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
920-0.208812952,
+0.172437429E-1,
-0.536489725,
-0.195361137,
+0.886425614,
-0.363358021,
+0.619984269,
+0.300908208
921-0.966960430,
+0.943702579,
-0.338876247,
-0.536715031,
+0.778634548E-1,
+0.361042261,
-0.916269183,
-0.496102929
924+1.02934909,
+1.17991400,
+1.48440814,
+1.33803344,
+1.04135633,
+1.32981753,
+1.53234267,
+1.07241571
925cov(:,:,
0)
= getCov(sample, dim, rweight)
927+0.218063891,
-0.381696895E-1
928-0.381696895E-1,
+0.368289858
930 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
931 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
933call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), uppDia)
935+0.218063816,
-0.381697342E-1
936+0.307599026E-40,
+0.368289679
937call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
939+0.218063816,
-0.381697342E-1
940-0.381697342E-1,
+0.368289679
941call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
943+0.218063816,
-0.647561923E-1
944-0.381697342E-1,
+0.368289679
946+0.218063891,
-0.381696895E-1
947-0.381696895E-1,
+0.368289858
952 lb(isam)
= ub(isam
- 1)
+ 1
960call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
961call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
965+0.915432692,
-0.653598905,
-0.838334560E-1,
-0.743202448,
+0.295577884,
-0.487685323,
-0.239836812,
-0.215451598,
+0.351986527,
-0.319292068
968+1.72926068,
+1.93589008,
+1.66682434,
+1.99141932,
+1.31718850,
+1.56028974,
+1.65035868,
+1.44783390,
+1.06330442,
+1.88710332
969cov(:,:,
0)
= getCov(sample, dim, rweight)
973 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
974 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
976call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), uppDia)
979call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
982call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
991 lb(isam)
= ub(isam
- 1)
+ 1
999call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
1000call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
1004+0.817428350,
+0.223605990,
-0.603304029,
-0.190736890,
-0.217534661,
-0.581344962,
+0.888407230E-1,
+0.106315613,
-0.874715805,
+0.599988341,
-0.968065143
1007+1.92081749,
+1.37140512,
+1.20661354,
+1.55333233,
+1.64777613,
+1.64123273,
+1.91226554,
+1.91070175,
+1.30830121,
+1.18622780,
+1.07210815
1008cov(:,:,
0)
= getCov(sample, dim, rweight)
1012 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1013 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1015call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), uppDia)
1018call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1021call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1030 lb(isam)
= ub(isam
- 1)
+ 1
1038call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
1039call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
1043+0.729969978,
+0.325574040,
+0.633107424,
+0.875135303,
+0.231574774E-1,
+0.510561466E-2,
+0.188273549,
-0.825449944,
+0.657613039
1046+1.38936448,
+1.35191381,
+1.46252060,
+1.14231896,
+1.25327516,
+1.87033701,
+1.43848753,
+1.69921613,
+1.81293392
1047cov(:,:,
0)
= getCov(sample, dim, rweight)
1051 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1052 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1054call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), uppDia)
1057call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1060call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1069 lb(isam)
= ub(isam
- 1)
+ 1
1077call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
1078call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
1082+0.310665727,
-0.784798861E-1,
-0.408750772E-1,
+0.236700773E-1,
-0.589460135,
+0.605108380,
-0.586218119,
-0.736391544,
+0.923646688E-1
1085+1.51354599,
+1.73482478,
+1.80212164,
+1.13209867,
+1.94563532,
+1.34622145,
+1.78995442,
+1.61077118,
+1.24866509
1086cov(:,:,
0)
= getCov(sample, dim, rweight)
1090 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1091 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1093call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), uppDia)
1096call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1099call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1108 lb(isam)
= ub(isam
- 1)
+ 1
1116call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
1117call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
1121-0.408083797,
-0.320973396,
+0.925886035,
-0.809636116E-1,
+0.596170425,
-0.375377297,
+0.506871700,
-0.556127310,
-0.181728721,
-0.940762162
1122+0.178442121,
-0.687025309,
-0.238163710,
-0.775015831,
-0.543785214,
-0.252047300,
-0.203243732,
-0.916440487E-1,
-0.658980966,
-0.124249458E-1
1123+0.566037536,
-0.245252132,
+0.358351231,
+0.737571239,
+0.125814557,
+0.725347996E-1,
-0.446675777,
+0.603518128,
-0.241560578,
-0.698436499
1126+1.18939352,
+1.53044820,
+1.71274900,
+1.76704192,
+1.05411363,
+1.15521646,
+1.17673028,
+1.05407143,
+1.36943102,
+1.37501192
1127cov(:,:,
0)
= getCov(sample, dim, rweight)
1129+0.314311415,
-0.331808701E-1,
+0.583453812E-1
1130-0.331808701E-1,
+0.956496894E-1,
-0.112399152E-1
1131+0.583453812E-1,
-0.112399152E-1,
+0.218885809
1133 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1134 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1136call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), uppDia)
1138+0.314311445,
-0.331808589E-1,
+0.583453923E-1
1139+0.307599026E-40,
+0.956496224E-1,
-0.112399347E-1
1140+0.00000000,
+1.56028974,
+0.218885839
1141call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1143+0.314311445,
-0.331808589E-1,
+0.583453923E-1
1144-0.331808589E-1,
+0.956496224E-1,
-0.112399347E-1
1145+0.583453923E-1,
-0.112399347E-1,
+0.218885839
1146call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1148+0.314311445,
-0.550740920E-1,
-0.406017667E-2
1149-0.331808589E-1,
+0.956496224E-1,
-0.390417594E-2
1150+0.583453923E-1,
-0.112399347E-1,
+0.218885839
1152+0.314311415,
-0.331808701E-1,
+0.583453812E-1
1153-0.331808701E-1,
+0.956496894E-1,
-0.112399152E-1
1154+0.583453812E-1,
-0.112399152E-1,
+0.218885809
1159 lb(isam)
= ub(isam
- 1)
+ 1
1167call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
1168call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
1172+0.341432214,
+0.881614089,
-0.399983644,
+0.121986508,
-0.629821777,
-0.989700913,
-0.313008666,
+0.485669732,
-0.426841259,
-0.730681419E-1,
-0.632340789
1173+0.270296335E-1,
+0.960321307,
+0.123806000,
-0.832738996,
+0.585676551,
-0.332803130,
+0.632914662,
-0.709569335,
-0.768916965,
+0.896968365,
+0.700377822
1176+1.36839724,
+1.22569716,
+1.53228807,
+1.43287218,
+1.19800758,
+1.80557775,
+1.30822086,
+1.96927047,
+1.65572071,
+1.94618654,
+1.35516381
1177cov(:,:,
0)
= getCov(sample, dim, rweight)
1179+0.277987570,
+0.232558488E-2
1180+0.232558488E-2,
+0.440771341
1182 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1183 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1185call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), uppDia)
1187+0.277987510,
+0.232557347E-2
1188-0.331808589E-1,
+0.440771312
1189call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1191+0.277987510,
+0.232557347E-2
1192+0.232557347E-2,
+0.440771312
1193call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1195+0.277987510,
-0.583272949E-1
1196+0.232557347E-2,
+0.440771312
1198+0.277987570,
+0.232558488E-2
1199+0.232558488E-2,
+0.440771341
1204 lb(isam)
= ub(isam
- 1)
+ 1
1212call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
1213call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
1217-0.703363776,
+0.365755200,
+0.485166788,
+0.877479315,
-0.228544474E-1,
+0.341466427,
+0.713805676,
-0.425514817,
-0.471305132
1218+0.161477685,
-0.383538008E-1,
-0.361167669,
-0.686302781,
+0.998305082,
-0.851873279,
-0.922629476,
+0.188710928,
+0.393612862
1221+1.54010212,
+1.89975560,
+1.66566694,
+1.38662136,
+1.46789765,
+1.68640089,
+1.33119249,
+1.50009692,
+1.93372250
1222cov(:,:,
0)
= getCov(sample, dim, rweight)
1224+0.269198686,
-0.210975319
1225-0.210975319,
+0.341622353
1227 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1228 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1230call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), uppDia)
1232+0.269198686,
-0.210975319
1233+0.232557347E-2,
+0.341622353
1234call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1236+0.269198686,
-0.210975319
1237-0.210975319,
+0.341622353
1238call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1240+0.269198686,
-0.276925981
1241-0.210975319,
+0.341622353
1243+0.269198686,
-0.210975319
1244-0.210975319,
+0.341622353
1249 lb(isam)
= ub(isam
- 1)
+ 1
1257call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
1258call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
1262+0.231803775,
-0.405511141,
+0.100138426,
+0.110578656,
-0.815388680,
+0.529161692E-1,
-0.383244634,
+0.933436871,
+0.768813372,
+0.413139462,
+0.917377234
1263-0.494561315,
+0.677074194E-1,
+0.495207191,
-0.518746138,
-0.309982181,
+0.412847281,
+0.829150081,
+0.160709620E-1,
+0.425965190,
-0.868157625,
-0.439377069
1264-0.226817369,
+0.459925175,
-0.234521627,
+0.150696158,
-0.294090867,
+0.708761692,
+0.540903807E-1,
+0.898070693,
-0.831350088,
-0.343743086,
-0.402327776E-1
1265+0.698737860,
+0.154460907,
-0.666509628,
-0.666931868E-1,
-0.802560449,
+0.647636533,
+0.121201873,
-0.332906127,
+0.910137892,
+0.242470622,
+0.903353572
1268+1.43745375,
+1.66492128,
+1.20702338,
+1.92775202,
+1.99444473,
+1.73931384,
+1.15162110,
+1.35957360,
+1.12056088,
+1.65248513,
+1.72152197
1269cov(:,:,
0)
= getCov(sample, dim, rweight)
1271+0.301746637,
-0.442910679E-1,
+0.871652924E-2,
+0.173276588
1272-0.442910679E-1,
+0.240171909,
+0.523611270E-1,
-0.561171537E-2
1273+0.871652924E-2,
+0.523611270E-1,
+0.213028520,
-0.140174637E-1
1274+0.173276588,
-0.561171537E-2,
-0.140174637E-1,
+0.325453520
1276 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1277 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1279call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), uppDia)
1281+0.301746666,
-0.442910492E-1,
+0.871652924E-2,
+0.173276573
1282-0.210975319,
+0.240171894,
+0.523611009E-1,
-0.561170280E-2
1283+0.00000000,
-0.953873515,
+0.213028461,
-0.140174627E-1
1284+0.00000000,
-0.785974741,
+0.161004782,
+0.325453460
1285call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1287+0.301746666,
-0.442910492E-1,
+0.871652924E-2,
+0.173276573
1288-0.442910492E-1,
+0.240171894,
+0.523611009E-1,
-0.561170280E-2
1289+0.871652924E-2,
+0.523611009E-1,
+0.213028461,
-0.140174627E-1
1290+0.173276573,
-0.561170280E-2,
-0.140174627E-1,
+0.325453460
1291call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1293+0.301746666,
-0.139328852,
-0.310193896E-1,
+0.237882007E-1
1294-0.442910492E-1,
+0.240171894,
+0.810756236E-1,
-0.171762111E-2
1295+0.871652924E-2,
+0.523611009E-1,
+0.213028461,
-0.121108644
1296+0.173276573,
-0.561170280E-2,
-0.140174627E-1,
+0.325453460
1298+0.301746637,
-0.442910679E-1,
+0.871652924E-2,
+0.173276588
1299-0.442910679E-1,
+0.240171909,
+0.523611270E-1,
-0.561171537E-2
1300+0.871652924E-2,
+0.523611270E-1,
+0.213028520,
-0.140174637E-1
1301+0.173276588,
-0.561171537E-2,
-0.140174637E-1,
+0.325453520
1306 lb(isam)
= ub(isam
- 1)
+ 1
1314call setRebound(cov, [
1_IK,
1_IK,
0_IK], [ndim, ndim, nsam])
1315call setRebound(mean, [
1_IK,
1_IK], [ndim, nsam])
1319-0.299010873,
+0.176291347,
-0.858146787,
-0.699359655,
-0.857713223E-1,
-0.647481441,
-0.197677374,
+0.367065191
1322+1.16289353,
+1.44778609,
+1.33882809,
+1.10557842,
+1.73289824,
+1.95168519,
+1.53807294,
+1.21041763
1323cov(:,:,
0)
= getCov(sample, dim, rweight)
1327 cov(:,:,isam)
= getCov(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1328 mean(:,isam)
= getMean(sample(:,lb(isam):ub(isam)), dim, rweight(lb(isam):ub(isam)))
1330call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), uppDia)
1333call setCovMerged(covMerged, cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)
1336call setCovMerged(cov(:,:,
2), cov(:,:,
1), mean(:,
1)
- mean(:,
2),
real(
sum(rweight(:ub(
1))), TKG)
/ real(
sum(rweight), TKG), lowDia)