19 type(display_type) :: disp
20 integer(IK) :: itry, ntry
= 5
21 integer(IK) :: dim, isam, ndim, nsam
25 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
26 call disp%show(
"!Transform 2D sample along the second dimension.")
27 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
32 real(RKG),
allocatable :: tlate(:), tform(:,:), sample(:,:), affinInv(:,:), affinity(:,:)
35 call disp%show(
"dim = 2; ndim = getUnifRand(1, 3); nsam = getUnifRand(4, 5)")
39 call disp%show(
"tlate = getUnifRand(-5, +5, ndim)")
43 call disp%show(
"sample = getUnifRand(-9, +9, ndim, nsam)")
47 call disp%show(
"call setResized(affinity, shape(sample, IK))")
49 call disp%show(
"call setResized(affinInv, shape(sample, IK))")
51 call disp%show(
"tform = getCovRand(1., ndim)")
55 call disp%show(
"call setAffinity(affinity, sample, dim, tform, genrecmat) ! whole sample transformation.")
56 call setAffinity(affinity, sample, dim, tform, genrecmat)
57 call disp%show(
"transpose(affinity)")
58 call disp%show(
transpose(affinity) )
60 call disp%show(
" call setAffinity(affinity(:,isam), sample(:,isam), tform, genrecmat) ! point-wise transformation")
63 call setAffinity(affinity(:,isam), sample(:,isam), tform, genrecmat)
65 call disp%show(
"transpose(affinity)")
66 call disp%show(
transpose(affinity) )
67 call disp%show(
"call setAffinity(affinInv, affinity, dim, getMatInv(tform), genrecmat) ! inverse transformation.")
69 call disp%show(
"transpose(affinInv)")
70 call disp%show(
transpose(affinInv) )
71 call disp%show(
"transpose(sample) ! for comparison with affinInv.")
74 call disp%show(
"call setMatInit(tform(2:,1:ndim-1), lowDia, vlow = 0._RKG, vdia = 0._RKG) ! make tform an upper-diagonal matrix.")
75 call setMatInit(tform(
2:,
1:ndim
-1), lowDia, vlow
= 0._RKG, vdia
= 0._RKG)
78 call disp%show(
"call setAffinity(affinity, sample, dim, tform, class = upperDiag) ! whole sample transformation.")
79 call setAffinity(affinity, sample, dim, tform,
class = upperDiag)
80 call disp%show(
"transpose(affinity)")
81 call disp%show(
transpose(affinity) )
83 call disp%show(
" call setAffinity(affinity(:,isam), sample(:,isam), tform, upperDiag) ! point-wise transformation")
86 call setAffinity(affinity(:,isam), sample(:,isam), tform, upperDiag)
88 call disp%show(
"transpose(affinity)")
89 call disp%show(
transpose(affinity) )
90 call disp%show(
"call setAffinity(affinInv, affinity, dim, getMatInv(tform, upperDiag), class = upperDiag) ! inverse transformation.")
92 call disp%show(
"transpose(affinInv)")
93 call disp%show(
transpose(affinInv) )
94 call disp%show(
"transpose(sample) ! for comparison with affinInv.")
97 call disp%show(
"call setAffinity(affinity, sample, dim, tform, class = upperUnit) ! whole sample transformation.")
98 call setAffinity(affinity, sample, dim, tform,
class = upperUnit)
99 call disp%show(
"transpose(affinity)")
100 call disp%show(
transpose(affinity) )
102 call disp%show(
" call setAffinity(affinity(:,isam), sample(:,isam), tform, upperUnit) ! point-wise transformation")
105 call setAffinity(affinity(:,isam), sample(:,isam), tform, upperUnit)
107 call disp%show(
"transpose(affinity)")
108 call disp%show(
transpose(affinity) )
109 call disp%show(
"call setAffinity(affinInv, affinity, dim, getMatInv(tform), class = upperUnit) ! inverse transformation.")
111 call disp%show(
"transpose(affinInv)")
112 call disp%show(
transpose(affinInv) )
113 call disp%show(
"transpose(sample) ! for comparison with affinInv.")
116 call disp%show(
"call setAffinity(affinity, sample, dim, tform, class = lowerDiag) ! whole sample transformation.")
117 call setAffinity(affinity, sample, dim, tform,
class = lowerDiag)
118 call disp%show(
"transpose(affinity)")
119 call disp%show(
transpose(affinity) )
121 call disp%show(
" call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerDiag) ! point-wise transformation")
124 call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerDiag)
126 call disp%show(
"transpose(affinity)")
127 call disp%show(
transpose(affinity) )
128 call disp%show(
"call setAffinity(affinInv, affinity, dim, getMatInv(tform), class = lowerDiag) ! inverse transformation.")
130 call disp%show(
"transpose(affinInv)")
131 call disp%show(
transpose(affinInv) )
132 call disp%show(
"transpose(sample) ! for comparison with affinInv.")
135 call disp%show(
"call setAffinity(affinity, sample, dim, tform, class = lowerUnit) ! whole sample transformation.")
136 call setAffinity(affinity, sample, dim, tform,
class = lowerUnit)
137 call disp%show(
"transpose(affinity)")
138 call disp%show(
transpose(affinity) )
140 call disp%show(
" call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerUnit) ! point-wise transformation")
143 call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerUnit)
145 call disp%show(
"transpose(affinity)")
146 call disp%show(
transpose(affinity) )
147 call disp%show(
"call setAffinity(affinInv, affinity, dim, getMatInv(tform), class = lowerUnit) ! inverse transformation.")
149 call disp%show(
"transpose(affinInv)")
150 call disp%show(
transpose(affinInv) )
151 call disp%show(
"transpose(sample) ! for comparison with affinInv.")
157 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
158 call disp%show(
"!Transform 2D sample along the first dimension.")
159 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
164 real(RKG),
allocatable :: tlate(:), tform(:,:), sample(:,:), affinInv(:,:), affinity(:,:)
167 call disp%show(
"dim = 1; ndim = getUnifRand(1, 3); nsam = getUnifRand(4, 5)")
171 call disp%show(
"tlate = getUnifRand(-5, +5, ndim)")
175 call disp%show(
"sample = getUnifRand(-9, +9, nsam, ndim)")
179 call disp%show(
"call setResized(affinity, shape(sample, IK))")
181 call disp%show(
"call setResized(affinInv, shape(sample, IK))")
183 call disp%show(
"tform = getCovRand(1., ndim)")
187 call disp%show(
"call setAffinity(affinity, sample, dim, tform) ! whole sample transformation.")
188 call setAffinity(affinity, sample, dim, tform, genrecmat)
192 call disp%show(
" call setAffinity(affinity(isam,:), sample(isam,:), tform, genrecmat) ! point-wise transformation")
195 call setAffinity(affinity(isam,:), sample(isam,:), tform, genrecmat)
199 call disp%show(
"call setAffinity(affinInv, affinity, dim, getMatInv(tform), genrecmat) ! inverse transformation.")
203 call disp%show(
"sample ! for comparison with affinInv.")
206 call disp%show(
"call setMatInit(tform(2:,1:ndim-1), lowDia, vlow = 0._RKG, vdia = 0._RKG) ! make tform an upper-diagonal matrix.")
207 call setMatInit(tform(
2:,
1:ndim
-1), lowDia, vlow
= 0._RKG, vdia
= 0._RKG)
210 call disp%show(
"call setAffinity(affinity, sample, dim, tform, class = upperDiag) ! whole sample transformation.")
211 call setAffinity(affinity, sample, dim, tform,
class = upperDiag)
215 call disp%show(
" call setAffinity(affinity(isam,:), sample(isam,:), tform, upperDiag) ! point-wise transformation")
218 call setAffinity(affinity(isam,:), sample(isam,:), tform, upperDiag)
222 call disp%show(
"call setAffinity(affinInv, affinity, dim, getMatInv(tform, upperDiag), class = upperDiag) ! inverse transformation.")
226 call disp%show(
"sample ! for comparison with affinInv.")
229 call disp%show(
"call setAffinity(affinity, sample, dim, tform, class = upperUnit) ! whole sample transformation.")
230 call setAffinity(affinity, sample, dim, tform,
class = upperUnit)
234 call disp%show(
" call setAffinity(affinity(isam,:), sample(isam,:), tform, upperUnit) ! point-wise transformation")
237 call setAffinity(affinity(isam,:), sample(isam,:), tform, upperUnit)
241 call disp%show(
"call setAffinity(affinInv, affinity, dim, getMatInv(tform), class = upperUnit) ! inverse transformation.")
245 call disp%show(
"sample ! for comparison with affinInv.")
248 call disp%show(
"call setAffinity(affinity, sample, dim, tform, class = lowerDiag) ! whole sample transformation.")
249 call setAffinity(affinity, sample, dim, tform,
class = lowerDiag)
253 call disp%show(
" call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerDiag) ! point-wise transformation")
256 call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerDiag)
260 call disp%show(
"call setAffinity(affinInv, affinity, dim, getMatInv(tform), class = lowerDiag) ! inverse transformation.")
264 call disp%show(
"sample ! for comparison with affinInv.")
267 call disp%show(
"call setAffinity(affinity, sample, dim, tform, class = lowerUnit) ! whole sample transformation.")
268 call setAffinity(affinity, sample, dim, tform,
class = lowerUnit)
272 call disp%show(
" call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerUnit) ! point-wise transformation")
275 call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerUnit)
279 call disp%show(
"call setAffinity(affinInv, affinity, dim, getMatInv(tform), class = lowerUnit) ! inverse transformation.")
283 call disp%show(
"sample ! for comparison with affinInv.")
304 type(css_type),
allocatable :: shapes(:), tforms(:)
305 integer(IK) :: ishape, itform
306 integer(IK),
parameter :: nsam
= 1000, ndim
= 2, dim
= 2
307 real(RKG),
allocatable :: angle, tlate(:), cov(:,:), tform(:,:), sample(:,:), affinity(:,:), affinInv(:,:)
311 do ishape
= 1,
size(shapes)
312 if (shapes(ishape)
%val
== "circle")
then
314 elseif (shapes(ishape)
%val
== "square")
then
317 error stop "Unrecognized shape."
321 do itform
= 1,
size(tforms)
322 if (tforms(itform)
%val
== "rotation")
then
324 tform
= reshape([
cos(angle),
-sin(angle),
sin(angle),
cos(angle)], [ndim, ndim])
325 call setAffinity(affinity, sample, dim, tform, genrecmat, tlate)
326 elseif (tforms(itform)
%val
== "warp")
then
327 cov
= reshape([
1., .
5, .
5,
1.], shape
= [ndim, ndim])
329 call setAffinity(affinity, sample, dim, tform, lowerDiag, tlate)
331 error stop "Unrecognized tform."
334 if (
0 /= getErrTableWrite(SK_
"setAffinity."//tforms(itform)
%val
//SK_
"."//shapes(ishape)
%val
//SK_
".sample.txt", sample, trans))
error stop "Failed table-write."
335 if (
0 /= getErrTableWrite(SK_
"setAffinity."//tforms(itform)
%val
//SK_
"."//shapes(ishape)
%val
//SK_
".affinity.txt", affinity, trans))
error stop "Failed table-write."
336 if (
0 /= getErrTableWrite(SK_
"setAffinity."//tforms(itform)
%val
//SK_
"."//shapes(ishape)
%val
//SK_
".affinInv.txt", affinInv, trans))
error stop "Failed table-write."
Generate and return an array of the specified rank and shape of arbitrary intrinsic type and kind wit...
Allocate or resize (shrink or expand) an input allocatable scalar string or array of rank 1....
Generate count evenly spaced points over the interval [x1, x2] if x1 < x2, or [x2,...
Generate and return a random positive-definite (correlation or covariance) matrix using the Gram meth...
Generate and return a (collection) of random vector(s) of size ndim from the ndim-dimensional MultiVa...
Generate and return a scalar or a contiguous array of rank 1 of length s1 of randomly uniformly distr...
Generate and return the iostat code resulting from writing the input table of rank 1 or 2 to the spec...
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 upper or the lower Cholesky factorization of the input symmetric positive-def...
Generate and return a matrix of shape (shape(1), shape(2)) with the upper/lower triangle and the diag...
Set the upper/lower triangle and the diagonal elements of the input matrix of arbitrary shape (:,...
Generate and return the full inverse of an input matrix of general or triangular form directly or thr...
Generate a sample of shape (nsam), or (ndim, nsam) or (nsam, ndim) that is shifted by the specified i...
This module contains procedures and generic interfaces for convenient allocation and filling of array...
This module contains procedures and generic interfaces for resizing allocatable arrays of various typ...
This module contains procedures and generic interfaces for generating arrays with linear or logarithm...
This module contains the derived types for generating allocatable containers of scalar,...
This module contains classes and procedures for generating random matrices distributed on the space o...
This module contains classes and procedures for computing various statistical quantities related to t...
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 LK
The default logical kind in the ParaMonte library: kind(.true.) in Fortran, kind(....
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 relevant mathematical constants.
real(RKB), parameter PI
The scalar real constant of kind with highest available precision RKB representing the irrational num...
This module contains procedures and generic interfaces for computing the Cholesky factorization of po...
This module contains procedures and generic interfaces relevant to generating and initializing matric...
This module contains abstract and concrete derived types and procedures related to the inversion of s...
This module contains classes and procedures for shifting univariate or multivariate samples by arbitr...
This is the css_type type for generating instances of container of scalar of string objects.
Generate and return an object of type display_type.
15-5.00000000,
+3.00000000,
+7.00000000,
-1.00000000,
+7.00000000
21call setAffinity(affinity, sample, dim, tform, genrecmat)
29 call setAffinity(affinity(:,isam), sample(:,isam), tform, genrecmat)
51call setMatInit(tform(
2:,
1:ndim
-1), lowDia, vlow
= 0._RKG, vdia
= 0._RKG)
54call setAffinity(affinity, sample, dim, tform,
class = upperDiag)
62 call setAffinity(affinity(:,isam), sample(:,isam), tform, upperDiag)
84call setAffinity(affinity, sample, dim, tform,
class = upperUnit)
92 call setAffinity(affinity(:,isam), sample(:,isam), tform, upperUnit)
114call setAffinity(affinity, sample, dim, tform,
class = lowerDiag)
122 call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerDiag)
144call setAffinity(affinity, sample, dim, tform,
class = lowerUnit)
152 call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerUnit)
182+5.00000000,
-7.00000000,
-6.00000000,
+9.00000000,
+8.00000000
188call setAffinity(affinity, sample, dim, tform, genrecmat)
196 call setAffinity(affinity(:,isam), sample(:,isam), tform, genrecmat)
218call setMatInit(tform(
2:,
1:ndim
-1), lowDia, vlow
= 0._RKG, vdia
= 0._RKG)
221call setAffinity(affinity, sample, dim, tform,
class = upperDiag)
229 call setAffinity(affinity(:,isam), sample(:,isam), tform, upperDiag)
251call setAffinity(affinity, sample, dim, tform,
class = upperUnit)
259 call setAffinity(affinity(:,isam), sample(:,isam), tform, upperUnit)
281call setAffinity(affinity, sample, dim, tform,
class = lowerDiag)
289 call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerDiag)
311call setAffinity(affinity, sample, dim, tform,
class = lowerUnit)
319 call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerUnit)
346+0.00000000,
+5.00000000
349-2.00000000,
-4.00000000,
+5.00000000,
-9.00000000
350-8.00000000,
-3.00000000,
-7.00000000,
+3.00000000
355+1.00000000,
-0.814809263
356-0.814809263,
+1.00000000
357call setAffinity(affinity, sample, dim, tform, genrecmat)
359+4.51847410,
-6.37038136
360-1.55557227,
+0.259237051
361+10.7036648,
-11.0740461
362-11.4444275,
+10.3332834
364 call setAffinity(affinity(:,isam), sample(:,isam), tform, genrecmat)
367+4.51847410,
-6.37038136
368-1.55557227,
+0.259237051
369+10.7036648,
-11.0740461
370-11.4444275,
+10.3332834
373-2.00000095,
-8.00000191
374-4.00000000,
-3.00000000
375+4.99999619,
-7.00000000
376-8.99999619,
+3.00000381
378-2.00000000,
-8.00000000
379-4.00000000,
-3.00000000
380+5.00000000,
-7.00000000
381-9.00000000,
+3.00000000
383call setMatInit(tform(
2:,
1:ndim
-1), lowDia, vlow
= 0._RKG, vdia
= 0._RKG)
385+1.00000000,
-0.814809263
386+0.00000000,
+1.00000000
387call setAffinity(affinity, sample, dim, tform,
class = upperDiag)
389+4.51847410,
-8.00000000
390-1.55557227,
-3.00000000
391+10.7036648,
-7.00000000
392-11.4444275,
+3.00000000
394 call setAffinity(affinity(:,isam), sample(:,isam), tform, upperDiag)
397+4.51847410,
-8.00000000
398-1.55557227,
-3.00000000
399+10.7036648,
-7.00000000
400-11.4444275,
+3.00000000
403-2.00000000,
-8.00000000
404-4.00000000,
-3.00000000
405+5.00000000,
-7.00000000
406-9.00000000,
+3.00000000
408-2.00000000,
-8.00000000
409-4.00000000,
-3.00000000
410+5.00000000,
-7.00000000
411-9.00000000,
+3.00000000
413call setAffinity(affinity, sample, dim, tform,
class = upperUnit)
415+4.51847410,
-8.00000000
416-1.55557227,
-3.00000000
417+10.7036648,
-7.00000000
418-11.4444275,
+3.00000000
420 call setAffinity(affinity(:,isam), sample(:,isam), tform, upperUnit)
423+4.51847410,
-8.00000000
424-1.55557227,
-3.00000000
425+10.7036648,
-7.00000000
426-11.4444275,
+3.00000000
429-2.00000000,
-8.00000000
430-4.00000000,
-3.00000000
431+5.00000000,
-7.00000000
432-9.00000000,
+3.00000000
434-2.00000000,
-8.00000000
435-4.00000000,
-3.00000000
436+5.00000000,
-7.00000000
437-9.00000000,
+3.00000000
439call setAffinity(affinity, sample, dim, tform,
class = lowerDiag)
441-2.00000000,
-8.00000000
442-4.00000000,
-3.00000000
443+5.00000000,
-7.00000000
444-9.00000000,
+3.00000000
446 call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerDiag)
449-2.00000000,
-8.00000000
450-4.00000000,
-3.00000000
451+5.00000000,
-7.00000000
452-9.00000000,
+3.00000000
455-2.00000000,
-8.00000000
456-4.00000000,
-3.00000000
457+5.00000000,
-7.00000000
458-9.00000000,
+3.00000000
460-2.00000000,
-8.00000000
461-4.00000000,
-3.00000000
462+5.00000000,
-7.00000000
463-9.00000000,
+3.00000000
465call setAffinity(affinity, sample, dim, tform,
class = lowerUnit)
467-2.00000000,
-8.00000000
468-4.00000000,
-3.00000000
469+5.00000000,
-7.00000000
470-9.00000000,
+3.00000000
472 call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerUnit)
475-2.00000000,
-8.00000000
476-4.00000000,
-3.00000000
477+5.00000000,
-7.00000000
478-9.00000000,
+3.00000000
481-2.00000000,
-8.00000000
482-4.00000000,
-3.00000000
483+5.00000000,
-7.00000000
484-9.00000000,
+3.00000000
486-2.00000000,
-8.00000000
487-4.00000000,
-3.00000000
488+5.00000000,
-7.00000000
489-9.00000000,
+3.00000000
496+3.00000000,
+1.00000000
499-5.00000000,
-5.00000000,
-1.00000000,
+4.00000000,
-3.00000000
500+7.00000000,
+1.00000000,
+2.00000000,
-4.00000000,
+8.00000000
505+1.00000000,
+0.813187540
506+0.813187540,
+1.00000000
507call setAffinity(affinity, sample, dim, tform, genrecmat)
509+0.692312717,
+2.93406248
510-4.18681240,
-3.06593752
511+0.626375079,
+1.18681240
512+0.747249842,
-0.747249842
513+3.50550032,
+5.56043720
515 call setAffinity(affinity(:,isam), sample(:,isam), tform, genrecmat)
518+0.692312717,
+2.93406248
519-4.18681240,
-3.06593752
520+0.626375079,
+1.18681240
521+0.747249842,
-0.747249842
522+3.50550032,
+5.56043720
525-5.00000048,
+7.00000095
526-5.00000095,
+1.00000095
527-0.999999642,
+1.99999964
528+4.00000000,
-4.00000000
529-2.99999905,
+7.99999809
531-5.00000000,
+7.00000000
532-5.00000000,
+1.00000000
533-1.00000000,
+2.00000000
534+4.00000000,
-4.00000000
535-3.00000000,
+8.00000000
537call setMatInit(tform(
2:,
1:ndim
-1), lowDia, vlow
= 0._RKG, vdia
= 0._RKG)
539+1.00000000,
+0.813187540
540+0.00000000,
+1.00000000
541call setAffinity(affinity, sample, dim, tform,
class = upperDiag)
543+0.692312717,
+7.00000000
544-4.18681240,
+1.00000000
545+0.626375079,
+2.00000000
546+0.747249842,
-4.00000000
547+3.50550032,
+8.00000000
549 call setAffinity(affinity(:,isam), sample(:,isam), tform, upperDiag)
552+0.692312717,
+7.00000000
553-4.18681240,
+1.00000000
554+0.626375079,
+2.00000000
555+0.747249842,
-4.00000000
556+3.50550032,
+8.00000000
559-5.00000000,
+7.00000000
560-5.00000000,
+1.00000000
561-1.00000000,
+2.00000000
562+4.00000000,
-4.00000000
563-3.00000000,
+8.00000000
565-5.00000000,
+7.00000000
566-5.00000000,
+1.00000000
567-1.00000000,
+2.00000000
568+4.00000000,
-4.00000000
569-3.00000000,
+8.00000000
571call setAffinity(affinity, sample, dim, tform,
class = upperUnit)
573+0.692312717,
+7.00000000
574-4.18681240,
+1.00000000
575+0.626375079,
+2.00000000
576+0.747249842,
-4.00000000
577+3.50550032,
+8.00000000
579 call setAffinity(affinity(:,isam), sample(:,isam), tform, upperUnit)
582+0.692312717,
+7.00000000
583-4.18681240,
+1.00000000
584+0.626375079,
+2.00000000
585+0.747249842,
-4.00000000
586+3.50550032,
+8.00000000
589-5.00000000,
+7.00000000
590-5.00000000,
+1.00000000
591-1.00000000,
+2.00000000
592+4.00000000,
-4.00000000
593-3.00000000,
+8.00000000
595-5.00000000,
+7.00000000
596-5.00000000,
+1.00000000
597-1.00000000,
+2.00000000
598+4.00000000,
-4.00000000
599-3.00000000,
+8.00000000
601call setAffinity(affinity, sample, dim, tform,
class = lowerDiag)
603-5.00000000,
+7.00000000
604-5.00000000,
+1.00000000
605-1.00000000,
+2.00000000
606+4.00000000,
-4.00000000
607-3.00000000,
+8.00000000
609 call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerDiag)
612-5.00000000,
+7.00000000
613-5.00000000,
+1.00000000
614-1.00000000,
+2.00000000
615+4.00000000,
-4.00000000
616-3.00000000,
+8.00000000
619-5.00000000,
+7.00000000
620-5.00000000,
+1.00000000
621-1.00000000,
+2.00000000
622+4.00000000,
-4.00000000
623-3.00000000,
+8.00000000
625-5.00000000,
+7.00000000
626-5.00000000,
+1.00000000
627-1.00000000,
+2.00000000
628+4.00000000,
-4.00000000
629-3.00000000,
+8.00000000
631call setAffinity(affinity, sample, dim, tform,
class = lowerUnit)
633-5.00000000,
+7.00000000
634-5.00000000,
+1.00000000
635-1.00000000,
+2.00000000
636+4.00000000,
-4.00000000
637-3.00000000,
+8.00000000
639 call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerUnit)
642-5.00000000,
+7.00000000
643-5.00000000,
+1.00000000
644-1.00000000,
+2.00000000
645+4.00000000,
-4.00000000
646-3.00000000,
+8.00000000
649-5.00000000,
+7.00000000
650-5.00000000,
+1.00000000
651-1.00000000,
+2.00000000
652+4.00000000,
-4.00000000
653-3.00000000,
+8.00000000
655-5.00000000,
+7.00000000
656-5.00000000,
+1.00000000
657-1.00000000,
+2.00000000
658+4.00000000,
-4.00000000
659-3.00000000,
+8.00000000
666-1.00000000,
-3.00000000
669+0.00000000,
+5.00000000,
-8.00000000,
-2.00000000,
-8.00000000
670+0.00000000,
+2.00000000,
-7.00000000,
-7.00000000,
+9.00000000
675+1.00000000,
+0.488996148
676+0.488996148,
+1.00000000
677call setAffinity(affinity, sample, dim, tform, genrecmat)
679+0.00000000,
+0.00000000
680+5.97799206,
+4.44498062
681-11.4229736,
-10.9119692
682-5.42297316,
-7.97799206
683-3.59903479,
+5.08803082
685 call setAffinity(affinity(:,isam), sample(:,isam), tform, genrecmat)
688+0.00000000,
+0.00000000
689+5.97799206,
+4.44498062
690-11.4229736,
-10.9119692
691-5.42297316,
-7.97799206
692-3.59903479,
+5.08803082
695+0.00000000,
+0.00000000
696+4.99999952,
+2.00000048
697-7.99999952,
-7.00000048
698-1.99999952,
-7.00000048
699-8.00000000,
+9.00000095
701+0.00000000,
+0.00000000
702+5.00000000,
+2.00000000
703-8.00000000,
-7.00000000
704-2.00000000,
-7.00000000
705-8.00000000,
+9.00000000
707call setMatInit(tform(
2:,
1:ndim
-1), lowDia, vlow
= 0._RKG, vdia
= 0._RKG)
709+1.00000000,
+0.488996148
710+0.00000000,
+1.00000000
711call setAffinity(affinity, sample, dim, tform,
class = upperDiag)
713+0.00000000,
+0.00000000
714+5.97799206,
+2.00000000
715-11.4229736,
-7.00000000
716-5.42297316,
-7.00000000
717-3.59903479,
+9.00000000
719 call setAffinity(affinity(:,isam), sample(:,isam), tform, upperDiag)
722+0.00000000,
+0.00000000
723+5.97799206,
+2.00000000
724-11.4229736,
-7.00000000
725-5.42297316,
-7.00000000
726-3.59903479,
+9.00000000
729+0.00000000,
+0.00000000
730+5.00000000,
+2.00000000
731-8.00000000,
-7.00000000
732-2.00000000,
-7.00000000
733-8.00000000,
+9.00000000
735+0.00000000,
+0.00000000
736+5.00000000,
+2.00000000
737-8.00000000,
-7.00000000
738-2.00000000,
-7.00000000
739-8.00000000,
+9.00000000
741call setAffinity(affinity, sample, dim, tform,
class = upperUnit)
743+0.00000000,
+0.00000000
744+5.97799206,
+2.00000000
745-11.4229736,
-7.00000000
746-5.42297316,
-7.00000000
747-3.59903479,
+9.00000000
749 call setAffinity(affinity(:,isam), sample(:,isam), tform, upperUnit)
752+0.00000000,
+0.00000000
753+5.97799206,
+2.00000000
754-11.4229736,
-7.00000000
755-5.42297316,
-7.00000000
756-3.59903479,
+9.00000000
759+0.00000000,
+0.00000000
760+5.00000000,
+2.00000000
761-8.00000000,
-7.00000000
762-2.00000000,
-7.00000000
763-8.00000000,
+9.00000000
765+0.00000000,
+0.00000000
766+5.00000000,
+2.00000000
767-8.00000000,
-7.00000000
768-2.00000000,
-7.00000000
769-8.00000000,
+9.00000000
771call setAffinity(affinity, sample, dim, tform,
class = lowerDiag)
773+0.00000000,
+0.00000000
774+5.00000000,
+2.00000000
775-8.00000000,
-7.00000000
776-2.00000000,
-7.00000000
777-8.00000000,
+9.00000000
779 call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerDiag)
782+0.00000000,
+0.00000000
783+5.00000000,
+2.00000000
784-8.00000000,
-7.00000000
785-2.00000000,
-7.00000000
786-8.00000000,
+9.00000000
789+0.00000000,
+0.00000000
790+5.00000000,
+2.00000000
791-8.00000000,
-7.00000000
792-2.00000000,
-7.00000000
793-8.00000000,
+9.00000000
795+0.00000000,
+0.00000000
796+5.00000000,
+2.00000000
797-8.00000000,
-7.00000000
798-2.00000000,
-7.00000000
799-8.00000000,
+9.00000000
801call setAffinity(affinity, sample, dim, tform,
class = lowerUnit)
803+0.00000000,
+0.00000000
804+5.00000000,
+2.00000000
805-8.00000000,
-7.00000000
806-2.00000000,
-7.00000000
807-8.00000000,
+9.00000000
809 call setAffinity(affinity(:,isam), sample(:,isam), tform, lowerUnit)
812+0.00000000,
+0.00000000
813+5.00000000,
+2.00000000
814-8.00000000,
-7.00000000
815-2.00000000,
-7.00000000
816-8.00000000,
+9.00000000
819+0.00000000,
+0.00000000
820+5.00000000,
+2.00000000
821-8.00000000,
-7.00000000
822-2.00000000,
-7.00000000
823-8.00000000,
+9.00000000
825+0.00000000,
+0.00000000
826+5.00000000,
+2.00000000
827-8.00000000,
-7.00000000
828-2.00000000,
-7.00000000
829-8.00000000,
+9.00000000
841-1.00000000,
-5.00000000
844+0.00000000,
-1.00000000
845-5.00000000,
-8.00000000
846+7.00000000,
-3.00000000
847-8.00000000,
+6.00000000
848+6.00000000,
+9.00000000
853+1.00000000,
-0.658268034E-1
854-0.658268034E-1,
+1.00000000
857+0.658268034E-1,
-1.00000000
858-4.47338581,
-7.67086601
859+7.19748020,
-3.46078753
860-8.39496040,
+6.52661419
861+5.40755892,
+8.60503960
863 call setAffinity(affinity(isam,:), sample(isam,:), tform, genrecmat)
866+0.658268034E-1,
-1.00000000
867-4.47338581,
-7.67086601
868+7.19748020,
-3.46078753
869-8.39496040,
+6.52661419
870+5.40755892,
+8.60503960
873+0.00000000,
-0.999999940
874-5.00000000,
-7.99999952
875+6.99999952,
-2.99999976
876-7.99999905,
+5.99999952
877+5.99999952,
+9.00000000
879+0.00000000,
-1.00000000
880-5.00000000,
-8.00000000
881+7.00000000,
-3.00000000
882-8.00000000,
+6.00000000
883+6.00000000,
+9.00000000
885call setMatInit(tform(
2:,
1:ndim
-1), lowDia, vlow
= 0._RKG, vdia
= 0._RKG)
887+1.00000000,
-0.658268034E-1
888+0.00000000,
+1.00000000
889call setAffinity(affinity, sample, dim, tform,
class = upperDiag)
891+0.658268034E-1,
-1.00000000
892-4.47338581,
-8.00000000
893+7.19748020,
-3.00000000
894-8.39496040,
+6.00000000
895+5.40755892,
+9.00000000
897 call setAffinity(affinity(isam,:), sample(isam,:), tform, upperDiag)
900+0.658268034E-1,
-1.00000000
901-4.47338581,
-8.00000000
902+7.19748020,
-3.00000000
903-8.39496040,
+6.00000000
904+5.40755892,
+9.00000000
907+0.00000000,
-1.00000000
908-5.00000000,
-8.00000000
909+7.00000000,
-3.00000000
910-7.99999952,
+6.00000000
911+6.00000000,
+9.00000000
913+0.00000000,
-1.00000000
914-5.00000000,
-8.00000000
915+7.00000000,
-3.00000000
916-8.00000000,
+6.00000000
917+6.00000000,
+9.00000000
919call setAffinity(affinity, sample, dim, tform,
class = upperUnit)
921+0.658268034E-1,
-1.00000000
922-4.47338581,
-8.00000000
923+7.19748020,
-3.00000000
924-8.39496040,
+6.00000000
925+5.40755892,
+9.00000000
927 call setAffinity(affinity(isam,:), sample(isam,:), tform, upperUnit)
930+0.658268034E-1,
-1.00000000
931-4.47338581,
-8.00000000
932+7.19748020,
-3.00000000
933-8.39496040,
+6.00000000
934+5.40755892,
+9.00000000
937+0.00000000,
-1.00000000
938-5.00000000,
-8.00000000
939+7.00000000,
-3.00000000
940-7.99999952,
+6.00000000
941+6.00000000,
+9.00000000
943+0.00000000,
-1.00000000
944-5.00000000,
-8.00000000
945+7.00000000,
-3.00000000
946-8.00000000,
+6.00000000
947+6.00000000,
+9.00000000
949call setAffinity(affinity, sample, dim, tform,
class = lowerDiag)
951+0.00000000,
-1.00000000
952-5.00000000,
-8.00000000
953+7.00000000,
-3.00000000
954-8.00000000,
+6.00000000
955+6.00000000,
+9.00000000
957 call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerDiag)
960+0.00000000,
-1.00000000
961-5.00000000,
-8.00000000
962+7.00000000,
-3.00000000
963-8.00000000,
+6.00000000
964+6.00000000,
+9.00000000
967+0.00000000,
-1.00000000
968-5.00000000,
-8.00000000
969+7.00000000,
-3.00000000
970-8.00000000,
+6.00000000
971+6.00000000,
+9.00000000
973+0.00000000,
-1.00000000
974-5.00000000,
-8.00000000
975+7.00000000,
-3.00000000
976-8.00000000,
+6.00000000
977+6.00000000,
+9.00000000
979call setAffinity(affinity, sample, dim, tform,
class = lowerUnit)
981+0.00000000,
-1.00000000
982-5.00000000,
-8.00000000
983+7.00000000,
-3.00000000
984-8.00000000,
+6.00000000
985+6.00000000,
+9.00000000
987 call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerUnit)
990+0.00000000,
-1.00000000
991-5.00000000,
-8.00000000
992+7.00000000,
-3.00000000
993-8.00000000,
+6.00000000
994+6.00000000,
+9.00000000
997+0.00000000,
-1.00000000
998-5.00000000,
-8.00000000
999+7.00000000,
-3.00000000
1000-8.00000000,
+6.00000000
1001+6.00000000,
+9.00000000
1003+0.00000000,
-1.00000000
1004-5.00000000,
-8.00000000
1005+7.00000000,
-3.00000000
1006-8.00000000,
+6.00000000
1007+6.00000000,
+9.00000000
1014+2.00000000,
+4.00000000,
-2.00000000
1017-6.00000000,
+0.00000000,
+5.00000000
1018-9.00000000,
+6.00000000,
+6.00000000
1019+7.00000000,
+2.00000000,
-8.00000000
1020-8.00000000,
-9.00000000,
+4.00000000
1021+8.00000000,
-2.00000000,
+4.00000000
1026+1.00000000,
+0.890103281,
-0.647306263
1027+0.890103281,
+1.00000000,
-0.451373518
1028-0.647306263,
-0.451373518,
+1.00000000
1031-9.23653126,
-7.59748745,
+8.88383770
1032-7.54321814,
-4.71917009,
+9.11751556
1033+13.9586563,
+11.8417110,
-13.4338913
1034-18.6001549,
-17.9263210,
+13.2408123
1035+3.63056827,
+3.31533217,
-0.275702953
1037 call setAffinity(affinity(isam,:), sample(isam,:), tform, genrecmat)
1040-9.23653126,
-7.59748745,
+8.88383770
1041-7.54321814,
-4.71917009,
+9.11751556
1042+13.9586563,
+11.8417110,
-13.4338913
1043-18.6001549,
-17.9263210,
+13.2408123
1044+3.63056827,
+3.31533217,
-0.275702953
1047-6.00000000,
+0.953674316E-6,
+5.00000000
1048-9.00000763,
+6.00000477,
+5.99999809
1049+7.00000381,
+2.00000668,
-8.00000000
1050-8.00001144,
-8.99999428,
+4.00000000
1051+7.99999905,
-1.99999952,
+4.00000048
1053-6.00000000,
+0.00000000,
+5.00000000
1054-9.00000000,
+6.00000000,
+6.00000000
1055+7.00000000,
+2.00000000,
-8.00000000
1056-8.00000000,
-9.00000000,
+4.00000000
1057+8.00000000,
-2.00000000,
+4.00000000
1059call setMatInit(tform(
2:,
1:ndim
-1), lowDia, vlow
= 0._RKG, vdia
= 0._RKG)
1061+1.00000000,
+0.890103281,
-0.647306263
1062+0.00000000,
+1.00000000,
-0.451373518
1063+0.00000000,
+0.00000000,
+1.00000000
1064call setAffinity(affinity, sample, dim, tform,
class = upperDiag)
1066-9.23653126,
-2.25686765,
+5.00000000
1067-7.54321814,
+3.29175901,
+6.00000000
1068+13.9586563,
+5.61098814,
-8.00000000
1069-18.6001549,
-10.8054943,
+4.00000000
1070+3.63056850,
-3.80549407,
+4.00000000
1072 call setAffinity(affinity(isam,:), sample(isam,:), tform, upperDiag)
1075-9.23653126,
-2.25686765,
+5.00000000
1076-7.54321814,
+3.29175901,
+6.00000000
1077+13.9586563,
+5.61098814,
-8.00000000
1078-18.6001549,
-10.8054943,
+4.00000000
1079+3.63056850,
-3.80549407,
+4.00000000
1082-6.00000000,
+0.00000000,
+5.00000000
1083-9.00000000,
+6.00000000,
+6.00000000
1084+6.99999952,
+2.00000000,
-8.00000000
1085-8.00000000,
-9.00000000,
+4.00000000
1086+8.00000000,
-2.00000000,
+4.00000000
1088-6.00000000,
+0.00000000,
+5.00000000
1089-9.00000000,
+6.00000000,
+6.00000000
1090+7.00000000,
+2.00000000,
-8.00000000
1091-8.00000000,
-9.00000000,
+4.00000000
1092+8.00000000,
-2.00000000,
+4.00000000
1094call setAffinity(affinity, sample, dim, tform,
class = upperUnit)
1096-9.23653126,
-2.25686765,
+5.00000000
1097-7.54321814,
+3.29175901,
+6.00000000
1098+13.9586563,
+5.61098814,
-8.00000000
1099-18.6001549,
-10.8054943,
+4.00000000
1100+3.63056850,
-3.80549407,
+4.00000000
1102 call setAffinity(affinity(isam,:), sample(isam,:), tform, upperUnit)
1105-9.23653126,
-2.25686765,
+5.00000000
1106-7.54321814,
+3.29175901,
+6.00000000
1107+13.9586563,
+5.61098814,
-8.00000000
1108-18.6001549,
-10.8054943,
+4.00000000
1109+3.63056850,
-3.80549407,
+4.00000000
1112-6.00000000,
+0.00000000,
+5.00000000
1113-9.00000000,
+6.00000000,
+6.00000000
1114+6.99999952,
+2.00000000,
-8.00000000
1115-8.00000000,
-9.00000000,
+4.00000000
1116+8.00000000,
-2.00000000,
+4.00000000
1118-6.00000000,
+0.00000000,
+5.00000000
1119-9.00000000,
+6.00000000,
+6.00000000
1120+7.00000000,
+2.00000000,
-8.00000000
1121-8.00000000,
-9.00000000,
+4.00000000
1122+8.00000000,
-2.00000000,
+4.00000000
1124call setAffinity(affinity, sample, dim, tform,
class = lowerDiag)
1126-6.00000000,
+0.00000000,
+5.00000000
1127-9.00000000,
+6.00000000,
+6.00000000
1128+7.00000000,
+2.00000000,
-8.00000000
1129-8.00000000,
-9.00000000,
+4.00000000
1130+8.00000000,
-2.00000000,
+4.00000000
1132 call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerDiag)
1135-6.00000000,
+0.00000000,
+5.00000000
1136-9.00000000,
+6.00000000,
+6.00000000
1137+7.00000000,
+2.00000000,
-8.00000000
1138-8.00000000,
-9.00000000,
+4.00000000
1139+8.00000000,
-2.00000000,
+4.00000000
1142-6.00000000,
+0.00000000,
+5.00000000
1143-9.00000000,
+6.00000000,
+6.00000000
1144+7.00000000,
+2.00000000,
-8.00000000
1145-8.00000000,
-9.00000000,
+4.00000000
1146+8.00000000,
-2.00000000,
+4.00000000
1148-6.00000000,
+0.00000000,
+5.00000000
1149-9.00000000,
+6.00000000,
+6.00000000
1150+7.00000000,
+2.00000000,
-8.00000000
1151-8.00000000,
-9.00000000,
+4.00000000
1152+8.00000000,
-2.00000000,
+4.00000000
1154call setAffinity(affinity, sample, dim, tform,
class = lowerUnit)
1156-6.00000000,
+0.00000000,
+5.00000000
1157-9.00000000,
+6.00000000,
+6.00000000
1158+7.00000000,
+2.00000000,
-8.00000000
1159-8.00000000,
-9.00000000,
+4.00000000
1160+8.00000000,
-2.00000000,
+4.00000000
1162 call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerUnit)
1165-6.00000000,
+0.00000000,
+5.00000000
1166-9.00000000,
+6.00000000,
+6.00000000
1167+7.00000000,
+2.00000000,
-8.00000000
1168-8.00000000,
-9.00000000,
+4.00000000
1169+8.00000000,
-2.00000000,
+4.00000000
1172-6.00000000,
+0.00000000,
+5.00000000
1173-9.00000000,
+6.00000000,
+6.00000000
1174+7.00000000,
+2.00000000,
-8.00000000
1175-8.00000000,
-9.00000000,
+4.00000000
1176+8.00000000,
-2.00000000,
+4.00000000
1178-6.00000000,
+0.00000000,
+5.00000000
1179-9.00000000,
+6.00000000,
+6.00000000
1180+7.00000000,
+2.00000000,
-8.00000000
1181-8.00000000,
-9.00000000,
+4.00000000
1182+8.00000000,
-2.00000000,
+4.00000000
1189-5.00000000,
-4.00000000
1192-4.00000000,
+2.00000000
1193+8.00000000,
-7.00000000
1194+2.00000000,
-2.00000000
1195+7.00000000,
+8.00000000
1200+1.00000000,
-0.896694243
1201-0.896694243,
+1.00000000
1204-5.79338837,
+5.58677673
1205+14.2768593,
-14.1735535
1206+3.79338837,
-3.79338837
1207-0.173553944,
+1.72314024
1209 call setAffinity(affinity(isam,:), sample(isam,:), tform, genrecmat)
1212-5.79338837,
+5.58677673
1213+14.2768593,
-14.1735535
1214+3.79338837,
-3.79338837
1215-0.173553944,
+1.72314024
1218-4.00000000,
+2.00000000
1219+8.00000000,
-7.00000000
1220+2.00000000,
-2.00000000
1221+7.00000000,
+8.00000000
1223-4.00000000,
+2.00000000
1224+8.00000000,
-7.00000000
1225+2.00000000,
-2.00000000
1226+7.00000000,
+8.00000000
1228call setMatInit(tform(
2:,
1:ndim
-1), lowDia, vlow
= 0._RKG, vdia
= 0._RKG)
1230+1.00000000,
-0.896694243
1231+0.00000000,
+1.00000000
1232call setAffinity(affinity, sample, dim, tform,
class = upperDiag)
1234-5.79338837,
+2.00000000
1235+14.2768593,
-7.00000000
1236+3.79338837,
-2.00000000
1237-0.173553944,
+8.00000000
1239 call setAffinity(affinity(isam,:), sample(isam,:), tform, upperDiag)
1242-5.79338837,
+2.00000000
1243+14.2768593,
-7.00000000
1244+3.79338837,
-2.00000000
1245-0.173553944,
+8.00000000
1248-4.00000000,
+2.00000000
1249+7.99999952,
-7.00000000
1250+1.99999988,
-2.00000000
1251+7.00000000,
+8.00000000
1253-4.00000000,
+2.00000000
1254+8.00000000,
-7.00000000
1255+2.00000000,
-2.00000000
1256+7.00000000,
+8.00000000
1258call setAffinity(affinity, sample, dim, tform,
class = upperUnit)
1260-5.79338837,
+2.00000000
1261+14.2768593,
-7.00000000
1262+3.79338837,
-2.00000000
1263-0.173553944,
+8.00000000
1265 call setAffinity(affinity(isam,:), sample(isam,:), tform, upperUnit)
1268-5.79338837,
+2.00000000
1269+14.2768593,
-7.00000000
1270+3.79338837,
-2.00000000
1271-0.173553944,
+8.00000000
1274-4.00000000,
+2.00000000
1275+7.99999952,
-7.00000000
1276+1.99999988,
-2.00000000
1277+7.00000000,
+8.00000000
1279-4.00000000,
+2.00000000
1280+8.00000000,
-7.00000000
1281+2.00000000,
-2.00000000
1282+7.00000000,
+8.00000000
1284call setAffinity(affinity, sample, dim, tform,
class = lowerDiag)
1286-4.00000000,
+2.00000000
1287+8.00000000,
-7.00000000
1288+2.00000000,
-2.00000000
1289+7.00000000,
+8.00000000
1291 call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerDiag)
1294-4.00000000,
+2.00000000
1295+8.00000000,
-7.00000000
1296+2.00000000,
-2.00000000
1297+7.00000000,
+8.00000000
1300-4.00000000,
+2.00000000
1301+8.00000000,
-7.00000000
1302+2.00000000,
-2.00000000
1303+7.00000000,
+8.00000000
1305-4.00000000,
+2.00000000
1306+8.00000000,
-7.00000000
1307+2.00000000,
-2.00000000
1308+7.00000000,
+8.00000000
1310call setAffinity(affinity, sample, dim, tform,
class = lowerUnit)
1312-4.00000000,
+2.00000000
1313+8.00000000,
-7.00000000
1314+2.00000000,
-2.00000000
1315+7.00000000,
+8.00000000
1317 call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerUnit)
1320-4.00000000,
+2.00000000
1321+8.00000000,
-7.00000000
1322+2.00000000,
-2.00000000
1323+7.00000000,
+8.00000000
1326-4.00000000,
+2.00000000
1327+8.00000000,
-7.00000000
1328+2.00000000,
-2.00000000
1329+7.00000000,
+8.00000000
1331-4.00000000,
+2.00000000
1332+8.00000000,
-7.00000000
1333+2.00000000,
-2.00000000
1334+7.00000000,
+8.00000000
1360 call setAffinity(affinity(isam,:), sample(isam,:), tform, genrecmat)
1379call setMatInit(tform(
2:,
1:ndim
-1), lowDia, vlow
= 0._RKG, vdia
= 0._RKG)
1382call setAffinity(affinity, sample, dim, tform,
class = upperDiag)
1389 call setAffinity(affinity(isam,:), sample(isam,:), tform, upperDiag)
1408call setAffinity(affinity, sample, dim, tform,
class = upperUnit)
1415 call setAffinity(affinity(isam,:), sample(isam,:), tform, upperUnit)
1434call setAffinity(affinity, sample, dim, tform,
class = lowerDiag)
1441 call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerDiag)
1460call setAffinity(affinity, sample, dim, tform,
class = lowerUnit)
1467 call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerUnit)
1491+3.00000000,
+5.00000000,
-4.00000000
1494-2.00000000,
+0.00000000,
+0.00000000
1495-6.00000000,
-5.00000000,
+4.00000000
1496+7.00000000,
+2.00000000,
-2.00000000
1497-5.00000000,
+4.00000000,
+8.00000000
1502+1.00000000,
-0.155603439,
-0.328100175E-1
1503-0.155603439,
+1.00000000,
-0.676911235
1504-0.328100175E-1,
-0.676911235,
+1.00000000
1507-2.00000000,
+0.311206877,
+0.656200349E-1
1508-5.35322285,
-6.77402449,
+7.58141613
1509+6.75441313,
+2.26459837,
-3.58349276
1510-5.88489389,
-0.637272835,
+5.45640516
1512 call setAffinity(affinity(isam,:), sample(isam,:), tform, genrecmat)
1515-2.00000000,
+0.311206877,
+0.656200349E-1
1516-5.35322285,
-6.77402449,
+7.58141613
1517+6.75441313,
+2.26459837,
-3.58349276
1518-5.88489389,
-0.637272835,
+5.45640516
1521-1.99999988,
+0.447034836E-7,
+0.149011612E-7
1522-6.00000048,
-5.00000095,
+4.00000000
1523+7.00000000,
+1.99999952,
-2.00000095
1524-4.99999952,
+4.00000048,
+8.00000095
1526-2.00000000,
+0.00000000,
+0.00000000
1527-6.00000000,
-5.00000000,
+4.00000000
1528+7.00000000,
+2.00000000,
-2.00000000
1529-5.00000000,
+4.00000000,
+8.00000000
1531call setMatInit(tform(
2:,
1:ndim
-1), lowDia, vlow
= 0._RKG, vdia
= 0._RKG)
1533+1.00000000,
-0.155603439,
-0.328100175E-1
1534+0.00000000,
+1.00000000,
-0.676911235
1535+0.00000000,
+0.00000000,
+1.00000000
1536call setAffinity(affinity, sample, dim, tform,
class = upperDiag)
1538-2.00000000,
+0.00000000,
+0.00000000
1539-5.35322285,
-7.70764494,
+4.00000000
1540+6.75441313,
+3.35382247,
-2.00000000
1541-5.88489389,
-1.41528988,
+8.00000000
1543 call setAffinity(affinity(isam,:), sample(isam,:), tform, upperDiag)
1546-2.00000000,
+0.00000000,
+0.00000000
1547-5.35322285,
-7.70764494,
+4.00000000
1548+6.75441313,
+3.35382247,
-2.00000000
1549-5.88489389,
-1.41528988,
+8.00000000
1552-2.00000000,
+0.00000000,
+0.00000000
1553-6.00000000,
-5.00000000,
+4.00000000
1554+7.00000000,
+2.00000000,
-2.00000000
1555-5.00000000,
+4.00000000,
+8.00000000
1557-2.00000000,
+0.00000000,
+0.00000000
1558-6.00000000,
-5.00000000,
+4.00000000
1559+7.00000000,
+2.00000000,
-2.00000000
1560-5.00000000,
+4.00000000,
+8.00000000
1562call setAffinity(affinity, sample, dim, tform,
class = upperUnit)
1564-2.00000000,
+0.00000000,
+0.00000000
1565-5.35322285,
-7.70764494,
+4.00000000
1566+6.75441313,
+3.35382247,
-2.00000000
1567-5.88489389,
-1.41528988,
+8.00000000
1569 call setAffinity(affinity(isam,:), sample(isam,:), tform, upperUnit)
1572-2.00000000,
+0.00000000,
+0.00000000
1573-5.35322285,
-7.70764494,
+4.00000000
1574+6.75441313,
+3.35382247,
-2.00000000
1575-5.88489389,
-1.41528988,
+8.00000000
1578-2.00000000,
+0.00000000,
+0.00000000
1579-6.00000000,
-5.00000000,
+4.00000000
1580+7.00000000,
+2.00000000,
-2.00000000
1581-5.00000000,
+4.00000000,
+8.00000000
1583-2.00000000,
+0.00000000,
+0.00000000
1584-6.00000000,
-5.00000000,
+4.00000000
1585+7.00000000,
+2.00000000,
-2.00000000
1586-5.00000000,
+4.00000000,
+8.00000000
1588call setAffinity(affinity, sample, dim, tform,
class = lowerDiag)
1590-2.00000000,
+0.00000000,
+0.00000000
1591-6.00000000,
-5.00000000,
+4.00000000
1592+7.00000000,
+2.00000000,
-2.00000000
1593-5.00000000,
+4.00000000,
+8.00000000
1595 call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerDiag)
1598-2.00000000,
+0.00000000,
+0.00000000
1599-6.00000000,
-5.00000000,
+4.00000000
1600+7.00000000,
+2.00000000,
-2.00000000
1601-5.00000000,
+4.00000000,
+8.00000000
1604-2.00000000,
+0.00000000,
+0.00000000
1605-6.00000000,
-5.00000000,
+4.00000000
1606+7.00000000,
+2.00000000,
-2.00000000
1607-5.00000000,
+4.00000000,
+8.00000000
1609-2.00000000,
+0.00000000,
+0.00000000
1610-6.00000000,
-5.00000000,
+4.00000000
1611+7.00000000,
+2.00000000,
-2.00000000
1612-5.00000000,
+4.00000000,
+8.00000000
1614call setAffinity(affinity, sample, dim, tform,
class = lowerUnit)
1616-2.00000000,
+0.00000000,
+0.00000000
1617-6.00000000,
-5.00000000,
+4.00000000
1618+7.00000000,
+2.00000000,
-2.00000000
1619-5.00000000,
+4.00000000,
+8.00000000
1621 call setAffinity(affinity(isam,:), sample(isam,:), tform, lowerUnit)
1624-2.00000000,
+0.00000000,
+0.00000000
1625-6.00000000,
-5.00000000,
+4.00000000
1626+7.00000000,
+2.00000000,
-2.00000000
1627-5.00000000,
+4.00000000,
+8.00000000
1630-2.00000000,
+0.00000000,
+0.00000000
1631-6.00000000,
-5.00000000,
+4.00000000
1632+7.00000000,
+2.00000000,
-2.00000000
1633-5.00000000,
+4.00000000,
+8.00000000
1635-2.00000000,
+0.00000000,
+0.00000000
1636-6.00000000,
-5.00000000,
+4.00000000
1637+7.00000000,
+2.00000000,
-2.00000000
1638-5.00000000,
+4.00000000,
+8.00000000