26 integer(IK):: itry, info, ndim, ntry
= 10
27 character(:, SK),
allocatable :: cform, rform
29 type(display_type) :: disp
32 cform
= getFormat(
mold = [(
0._TKG,
0._TKG)], ed
= SK_
"f", ndigit
= 2_IK, signed
= .true._LK)
33 rform
= getFormat(mold
= [
0._TKG], ed
= SK_
"f", ndigit
= 2_IK, signed
= .true._LK)
36 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
37 call disp%show(
"! Compute inverse of an upperDiag triangular real matrix.")
38 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
43 real(TKG),
allocatable :: mat(:,:), inv(:,:), mul(:,:)
46 call disp%show(
"ndim = getUnifRand(1_IK, 6_IK)")
50 call disp%show(
"mat = getUnifRand(1_IK, 9_IK, ndim, ndim)")
52 call disp%show(
"call setMatInit(mat(2 : ndim, 1 : ndim - 1), lowDia, 0._TKG, 0._TKG)")
53 call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia,
0._TKG,
0._TKG)
55 call disp%show( mat ,
format = rform )
56 call disp%show(
"call setResized(inv, shape(mat, IK))")
58 call disp%show(
"call setMatInv(inv, mat, upperDiag)")
61 call disp%show( inv ,
format = rform )
62 call disp%show(
"mul = matmul(mat, inv)")
63 mul
= matmul(mat, inv)
65 call disp%show( mul ,
format = rform )
71 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
72 call disp%show(
"! Compute inverse of a upperDiag triangular complex matrix.")
73 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
78 complex(TKG),
allocatable :: mat(:,:), inv(:,:), mul(:,:)
81 call disp%show(
"ndim = getUnifRand(1_IK, 6_IK)")
85 call disp%show(
"mat = getUnifRand((1., 1.), (2., 2.), ndim, ndim)")
87 call disp%show(
"call setMatInit(mat(2 : ndim, 1 : ndim - 1), lowDia, (0._TKG, 0._TKG), (0._TKG, 0._TKG))")
88 call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
90 call disp%show( mat ,
format = cform )
91 call disp%show(
"call setResized(inv, shape(mat, IK))")
93 call disp%show(
"call setMatInv(inv, mat, upperDiag)")
96 call disp%show( inv ,
format = cform )
97 call disp%show(
"mul = matmul(mat, inv)")
98 mul
= matmul(mat, inv)
100 call disp%show( mul ,
format = cform )
106 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
107 call disp%show(
"! Compute inverse of a lowerDiag triangular real matrix.")
108 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
113 real(TKG),
allocatable :: mat(:,:), inv(:,:), mul(:,:)
116 call disp%show(
"ndim = getUnifRand(1_IK, 6_IK)")
118 call disp%show(
"ndim ! matrix rank")
120 call disp%show(
"mat = getUnifRand(1_IK, 9_IK, ndim, ndim)")
122 call disp%show(
"call setMatInit(mat(1 : ndim - 1, 2 : ndim), uppDia, 0._TKG, 0._TKG)")
123 call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia,
0._TKG,
0._TKG)
125 call disp%show( mat ,
format = rform )
126 call disp%show(
"call setResized(inv, shape(mat, IK))")
128 call disp%show(
"call setMatInv(inv, mat, lowerDiag)")
131 call disp%show( inv ,
format = rform )
132 call disp%show(
"mul = matmul(mat, inv)")
133 mul
= matmul(mat, inv)
135 call disp%show( mul ,
format = rform )
141 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
142 call disp%show(
"! Compute inverse of a lowerDiag triangular complex matrix.")
143 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
148 complex(TKG),
allocatable :: mat(:,:), inv(:,:), mul(:,:)
151 call disp%show(
"ndim = getUnifRand(1_IK, 6_IK)")
153 call disp%show(
"ndim ! matrix rank")
155 call disp%show(
"mat = getUnifRand((1., 1.), (2., 2.), ndim, ndim)")
157 call disp%show(
"call setMatInit(mat(1 : ndim - 1, 2 : ndim), uppDia, (0._TKG, 0._TKG), (0._TKG, 0._TKG))")
158 call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
160 call disp%show( mat ,
format = cform )
161 call disp%show(
"call setResized(inv, shape(mat, IK))")
163 call disp%show(
"call setMatInv(inv, mat, lowerDiag)")
166 call disp%show( inv ,
format = cform )
167 call disp%show(
"mul = matmul(mat, inv)")
168 mul
= matmul(mat, inv)
170 call disp%show( mul ,
format = cform )
176 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
177 call disp%show(
"! Compute inverse of a upperUnit triangular real matrix.")
178 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
183 real(TKG),
allocatable :: mat(:,:), inv(:,:), mul(:,:)
186 call disp%show(
"ndim = getUnifRand(1_IK, 6_IK)")
188 call disp%show(
"ndim ! matrix rank")
190 call disp%show(
"mat = getUnifRand(1_IK, 9_IK, ndim, ndim)")
192 call disp%show(
"call setMatInit(mat, lowDia, 0._TKG, 1._TKG)")
195 call disp%show( mat ,
format = rform )
196 call disp%show(
"call setResized(inv, shape(mat, IK))")
198 call disp%show(
"call setMatInv(inv, mat, upperUnit)")
201 call disp%show( inv ,
format = rform )
202 call disp%show(
"mul = matmul(mat, inv)")
203 mul
= matmul(mat, inv)
205 call disp%show( mul ,
format = rform )
211 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
212 call disp%show(
"! Compute inverse of a upperUnit triangular complex matrix.")
213 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
218 complex(TKG),
allocatable :: mat(:,:), inv(:,:), mul(:,:)
221 call disp%show(
"ndim = getUnifRand(1_IK, 6_IK)")
223 call disp%show(
"ndim ! matrix rank")
225 call disp%show(
"mat = getUnifRand((-1., -1.), (+1., +1.), ndim, ndim)")
226 mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
227 call disp%show(
"call setMatInit(mat, lowDia, (0._TKG, 0._TKG), (1._TKG, 0._TKG))")
228 call setMatInit(mat, lowDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
230 call disp%show( mat ,
format = cform )
231 call disp%show(
"call setResized(inv, shape(mat, IK))")
233 call disp%show(
"call setMatInv(inv, mat, upperUnit)")
236 call disp%show( inv ,
format = cform )
237 call disp%show(
"mul = matmul(mat, inv)")
238 mul
= matmul(mat, inv)
240 call disp%show( mul ,
format = cform )
246 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
247 call disp%show(
"! Compute inverse of a lowerUnit triangular real matrix.")
248 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
253 real(TKG),
allocatable :: mat(:,:), inv(:,:), mul(:,:)
256 call disp%show(
"ndim = getUnifRand(1_IK, 6_IK)")
258 call disp%show(
"ndim ! matrix rank")
260 call disp%show(
"mat = getUnifRand(1_IK, 9_IK, ndim, ndim)")
262 call disp%show(
"call setMatInit(mat, uppDia, 0._TKG, 1._TKG)")
265 call disp%show( mat ,
format = rform )
266 call disp%show(
"call setResized(inv, shape(mat, IK))")
268 call disp%show(
"call setMatInv(inv, mat, lowerUnit)")
271 call disp%show( inv ,
format = rform )
272 call disp%show(
"mul = matmul(mat, inv)")
273 mul
= matmul(mat, inv)
275 call disp%show( mul ,
format = rform )
281 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
282 call disp%show(
"! Compute inverse of a lowerUnit triangular complex matrix.")
283 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
288 complex(TKG),
allocatable :: mat(:,:), inv(:,:), mul(:,:)
291 call disp%show(
"ndim = getUnifRand(1_IK, 6_IK)")
293 call disp%show(
"ndim ! matrix rank")
295 call disp%show(
"mat = getUnifRand((-1., -1.), (+1., +1.), ndim, ndim)")
296 mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
297 call disp%show(
"call setMatInit(mat, uppDia, (0._TKG, 0._TKG), (1._TKG, 0._TKG))")
298 call setMatInit(mat, uppDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
300 call disp%show( mat ,
format = cform )
301 call disp%show(
"call setResized(inv, shape(mat, IK))")
303 call disp%show(
"call setMatInv(inv, mat, lowerUnit)")
306 call disp%show( inv ,
format = cform )
307 call disp%show(
"mul = matmul(mat, inv)")
308 mul
= matmul(mat, inv)
310 call disp%show( mul ,
format = cform )
316 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
317 call disp%show(
"! Compute inverse of a general real matrix by passing its LUP factorization.")
318 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
323 integer(IK),
allocatable :: rperm(:)
324 real(TKG),
allocatable :: mat(:,:), lup(:,:), inv(:,:), mul(:,:)
327 call disp%show(
"mat = reshape([1, 0, 2, -1, 5, 0, 0, 3, -9], shape = [3,3], order = [2, 1])")
328 mat
= reshape([
1,
0,
2,
-1,
5,
0,
0,
3,
-9], shape
= [
3,
3], order
= [
2,
1])
330 call disp%show( mat ,
format = rform )
331 call disp%show(
"call setResized(rperm, size(mat, 1, IK))")
336 call disp%show( lup ,
format = rform )
337 call disp%show(
"call setMatLUP(lup, rperm, info) ! compute the LUP factorization of the matrix.")
339 call disp%show(
"if (info /= 0) error stop 'LUP factorization failed.'")
340 if (info
/= 0)
error stop 'LUP factorization failed.'
342 call disp%show( lup ,
format = rform )
343 call disp%show(
"call setResized(inv, shape(mat, IK))")
345 call disp%show(
"call setMatInv(inv, lup, rperm) ! compute the inverse of the matrix by passing its LUP factorization.")
348 call disp%show( inv ,
format = rform )
349 call disp%show(
"mul = matmul(mat, inv)")
350 mul
= matmul(mat, inv)
352 call disp%show( mul ,
format = rform )
358 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
359 call disp%show(
"! Compute inverse of a general complex matrix by passing its LUP factorization.")
360 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
365 integer(IK),
allocatable :: rperm(:)
366 complex(TKG),
parameter :: mat(
*,
*)
= reshape(
&
367 [ (
2.0,
1.0), (
2.4,
-1.0), (
2.8,
-1.0), (
3.2,
-1.0), (
3.6,
-1.0), (
4.0,
-1.0), (
4.4,
-1.0), (
4.8,
-1.0), (
5.2,
-1.0)
&
368 , (
2.4,
1.0), (
2.0,
1.0), (
2.4,
-1.0), (
2.8,
-1.0), (
3.2,
-1.0), (
3.6,
-1.0), (
4.0,
-1.0), (
4.4,
-1.0), (
4.8,
-1.0)
&
369 , (
2.8,
1.0), (
2.4,
1.0), (
2.0,
1.0), (
2.4,
-1.0), (
2.8,
-1.0), (
3.2,
-1.0), (
3.6,
-1.0), (
4.0,
-1.0), (
4.4,
-1.0)
&
370 , (
3.2,
1.0), (
2.8,
1.0), (
2.4,
1.0), (
2.0,
1.0), (
2.4,
-1.0), (
2.8,
-1.0), (
3.2,
-1.0), (
3.6,
-1.0), (
4.0,
-1.0)
&
371 , (
3.6,
1.0), (
3.2,
1.0), (
2.8,
1.0), (
2.4,
1.0), (
2.0,
1.0), (
2.4,
-1.0), (
2.8,
-1.0), (
3.2,
-1.0), (
3.6,
-1.0)
&
372 , (
4.0,
1.0), (
3.6,
1.0), (
3.2,
1.0), (
2.8,
1.0), (
2.4,
1.0), (
2.0,
1.0), (
2.4,
-1.0), (
2.8,
-1.0), (
3.2,
-1.0)
&
373 , (
4.4,
1.0), (
4.0,
1.0), (
3.6,
1.0), (
3.2,
1.0), (
2.8,
1.0), (
2.4,
1.0), (
2.0,
1.0), (
2.4,
-1.0), (
2.8,
-1.0)
&
374 , (
4.8,
1.0), (
4.4,
1.0), (
4.0,
1.0), (
3.6,
1.0), (
3.2,
1.0), (
2.8,
1.0), (
2.4,
1.0), (
2.0,
1.0), (
2.4,
-1.0)
&
375 , (
5.2,
1.0), (
4.8,
1.0), (
4.4,
1.0), (
4.0,
1.0), (
3.6,
1.0), (
3.2,
1.0), (
2.8,
1.0), (
2.4,
1.0), (
2.0,
1.0)
&
376 ], shape
= [
9,
9], order
= [
2,
1])
377 complex(TKG), dimension(
size(mat,
1),
size(mat,
2)) :: inv, lup, mul
379 call disp%show(
"call setResized(rperm, size(mat, 1, IK))")
384 call disp%show( lup ,
format = cform )
385 call disp%show(
"call setMatLUP(lup, rperm, info) ! compute the LUP factorization of the matrix.")
387 call disp%show(
"if (info /= 0) error stop 'LUP factorization failed.'")
388 if (info
/= 0)
error stop 'LUP factorization failed.'
390 call disp%show( lup ,
format = cform )
391 call disp%show(
"call setMatInv(inv, lup, rperm) ! compute the inverse of the matrix by passing its LUP factorization.")
394 call disp%show( inv ,
format = cform )
395 call disp%show(
"mul = matmul(mat, inv)")
396 mul
= matmul(mat, inv)
398 call disp%show( mul ,
format = cform )
403 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
404 call disp%show(
"! Compute the inverse of a positive-definite real matrix by passing its Cholesky factorization.")
405 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
410 real(TKG),
allocatable :: mat(:,:), chol(:,:), inv(:,:), mul(:,:)
413 call disp%show(
"ndim = getUnifRand(1_IK, 6_IK)")
415 call disp%show(
"ndim ! matrix rank")
417 call disp%show(
"mat = getCovRand(mold = 1._TKG, ndim = ndim)")
420 call disp%show( mat ,
format = rform )
421 call disp%show(
"chol = getMatChol(mat, subset = lowDia)")
424 call disp%show( chol ,
format = rform )
425 call disp%show(
"call setResized(inv, shape(mat, IK))")
427 call disp%show(
"call setMatInv(inv, chol, auxil = choLow)")
428 call setMatInv(inv, chol, auxil
= choLow)
430 call disp%show( inv ,
format = rform )
431 call disp%show(
"mul = matmul(mat, inv)")
432 mul
= matmul(mat, inv)
434 call disp%show( mul ,
format = rform )
440 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
441 call disp%show(
"! Compute the inverse of a positive-definite complex matrix by passing its Cholesky factorization.")
442 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
447 integer(IK),
parameter :: ndim
= 3_IK
448 complex(TKG),
allocatable :: chol(:,:), inv(:,:), mul(:,:)
449 complex(TKG),
parameter :: mat(
*,
*)
= reshape( [ (
9.0,
0.0), (
3.0,
3.0), (
3.0,
-3.0)
&
450 , (
3.0,
-3.0),(
18.0,
0.0), (
8.0,
-6.0)
&
451 , (
3.0,
3.0), (
8.0,
6.0),(
43.0,
0.0)
&
452 ], shape
= [ndim, ndim], order
= [
2,
1])
455 call disp%show( mat ,
format = cform )
456 call disp%show(
"chol = getMatChol(mat, subset = lowDia)")
459 call disp%show( chol ,
format = cform )
460 call disp%show(
"call setResized(inv, shape(mat, IK))")
462 call disp%show(
"call setMatInv(inv, chol, auxil = choLow)")
463 call setMatInv(inv, chol, auxil
= choLow)
465 call disp%show( inv ,
format = cform )
466 call disp%show(
"mul = matmul(mat, inv)")
467 mul
= matmul(mat, inv)
469 call disp%show( mul ,
format = cform )
475 integer(IK),
parameter :: ndim
= 3_IK
476 complex(TKG),
allocatable :: chol(:,:), inv(:,:), mul(:,:)
477 complex(TKG),
parameter :: mat(
*,
*)
= reshape( [ (
9.0,
0.0), (
3.0,
3.0), (
3.0,
-3.0)
&
478 , (
3.0,
-3.0),(
18.0,
0.0), (
8.0,
-6.0)
&
479 , (
3.0,
3.0), (
8.0,
6.0),(
43.0,
0.0)
&
480 ], shape
= [ndim, ndim], order
= [
2,
1])
483 call disp%show( mat ,
format = cform )
484 call disp%show(
"chol = getMatChol(mat, subset = uppDia)")
487 call disp%show( chol ,
format = cform )
488 call disp%show(
"call setResized(inv, shape(mat, IK))")
490 call disp%show(
"call setMatInv(inv, chol, auxil = choUpp)")
491 call setMatInv(inv, chol, auxil
= choUpp)
493 call disp%show( inv ,
format = cform )
494 call disp%show(
"mul = matmul(mat, inv)")
495 mul
= matmul(mat, inv)
497 call disp%show( mul ,
format = cform )
502 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
503 call disp%show(
"! Compute a subset of the inverse of a positive-definite real matrix by passing its Cholesky factorization.")
504 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
509 real(TKG),
allocatable :: mat(:,:), chol(:,:), inv(:,:), mul(:,:)
512 call disp%show(
"ndim = getUnifRand(1_IK, 6_IK)")
514 call disp%show(
"ndim ! matrix rank")
516 call disp%show(
"mat = getCovRand(mold = 1._TKG, ndim = ndim)")
519 call disp%show( mat ,
format = rform )
520 call disp%show(
"chol = getMatChol(mat, subset = lowDia)")
523 call disp%show( chol ,
format = rform )
524 call disp%show(
"call setResized(inv, shape(mat, IK))")
529 call disp%show(
"call setMatInv(inv, chol, auxil = choLow, subset = uppDia)")
530 call setMatInv(inv, chol, auxil
= choLow, subset
= uppDia)
532 call disp%show( inv ,
format = rform )
533 call disp%show(
"call setMatCopy(inv(2:,1:), rdpack, inv(1:,2:), rdpack, uppDia, transHerm) ! symmetrize `inv` for multiplication.")
534 call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
536 call disp%show( inv ,
format = rform )
537 call disp%show(
"mul = matmul(mat, inv)")
538 mul
= matmul(mat, inv)
540 call disp%show( mul ,
format = rform )
544 call disp%show(
"call setMatInv(inv, chol, auxil = choLow, subset = lowDia)")
545 call setMatInv(inv, chol, auxil
= choLow, subset
= lowDia)
547 call disp%show( inv ,
format = rform )
548 call disp%show(
"call setMatCopy(inv(1:,2:), rdpack, inv(2:,1:), rdpack, lowDia, transHerm) ! symmetrize `inv` for multiplication.")
549 call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
551 call disp%show( inv ,
format = rform )
552 call disp%show(
"mul = matmul(mat, inv)")
553 mul
= matmul(mat, inv)
555 call disp%show( mul ,
format = rform )
562 real(TKG),
allocatable :: mat(:,:), chol(:,:), inv(:,:), mul(:,:)
565 call disp%show(
"ndim = getUnifRand(1_IK, 6_IK)")
567 call disp%show(
"ndim ! matrix rank")
569 call disp%show(
"mat = getCovRand(mold = 1._TKG, ndim = ndim)")
572 call disp%show( mat ,
format = rform )
573 call disp%show(
"chol = getMatChol(mat, subset = uppDia)")
576 call disp%show( chol ,
format = rform )
577 call disp%show(
"call setResized(inv, shape(mat, IK))")
582 call disp%show(
"call setMatInv(inv, chol, auxil = choUpp, subset = uppDia)")
583 call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
585 call disp%show( inv ,
format = rform )
586 call disp%show(
"call setMatCopy(inv(2:,1:), rdpack, inv(1:,2:), rdpack, uppDia, transHerm) ! symmetrize `inv` for multiplication.")
587 call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
589 call disp%show( inv ,
format = rform )
590 call disp%show(
"mul = matmul(mat, inv)")
591 mul
= matmul(mat, inv)
593 call disp%show( mul ,
format = rform )
597 call disp%show(
"call setMatInv(inv, chol, auxil = choUpp, subset = lowDia)")
598 call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
600 call disp%show( inv ,
format = rform )
601 call disp%show(
"call setMatCopy(inv(1:,2:), rdpack, inv(2:,1:), rdpack, lowDia, transHerm) ! symmetrize `inv` for multiplication.")
602 call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
604 call disp%show( inv ,
format = rform )
605 call disp%show(
"mul = matmul(mat, inv)")
606 mul
= matmul(mat, inv)
608 call disp%show( mul ,
format = rform )
614 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
615 call disp%show(
"! Compute a subset of the inverse of a positive-definite complex matrix by passing its Cholesky factorization.")
616 call disp%show(
"!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
621 integer(IK),
parameter :: ndim
= 3_IK
622 complex(TKG),
allocatable :: chol(:,:), inv(:,:), mul(:,:)
623 complex(TKG),
parameter :: mat(
*,
*)
= reshape( [ (
9.0,
0.0), (
3.0,
3.0), (
3.0,
-3.0)
&
624 , (
3.0,
-3.0),(
18.0,
0.0), (
8.0,
-6.0)
&
625 , (
3.0,
3.0), (
8.0,
6.0),(
43.0,
0.0)
&
626 ], shape
= [ndim, ndim], order
= [
2,
1])
629 call disp%show( mat ,
format = cform )
630 call disp%show(
"chol = getMatChol(mat, subset = lowDia)")
633 call disp%show( chol ,
format = cform )
634 call disp%show(
"call setResized(inv, shape(mat, IK))")
638 call disp%show(
"call setMatInv(inv, chol, auxil = choLow, subset = uppDia)")
639 call setMatInv(inv, chol, auxil
= choLow, subset
= uppDia)
641 call disp%show( inv ,
format = cform )
642 call disp%show(
"call setMatCopy(inv(2:,1:), rdpack, inv(1:,2:), rdpack, uppDia, transHerm) ! symmetrize `inv` for multiplication.")
643 call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
645 call disp%show( inv ,
format = cform )
646 call disp%show(
"mul = matmul(mat, inv)")
647 mul
= matmul(mat, inv)
649 call disp%show( mul ,
format = cform )
653 call disp%show(
"call setMatInv(inv, chol, auxil = choLow, subset = lowDia)")
654 call setMatInv(inv, chol, auxil
= choLow, subset
= lowDia)
656 call disp%show( inv ,
format = cform )
657 call disp%show(
"call setMatCopy(inv(1:,2:), rdpack, inv(2:,1:), rdpack, lowDia, transHerm) ! symmetrize `inv` for multiplication.")
658 call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
660 call disp%show( inv ,
format = cform )
661 call disp%show(
"mul = matmul(mat, inv)")
662 mul
= matmul(mat, inv)
664 call disp%show( mul ,
format = cform )
670 integer(IK),
parameter :: ndim
= 3_IK
671 complex(TKG),
allocatable :: chol(:,:), inv(:,:), mul(:,:)
672 complex(TKG),
parameter :: mat(
*,
*)
= reshape( [ (
9.0,
0.0), (
3.0,
3.0), (
3.0,
-3.0)
&
673 , (
3.0,
-3.0),(
18.0,
0.0), (
8.0,
-6.0)
&
674 , (
3.0,
3.0), (
8.0,
6.0),(
43.0,
0.0)
&
675 ], shape
= [ndim, ndim], order
= [
2,
1])
678 call disp%show( mat ,
format = cform )
679 call disp%show(
"chol = getMatChol(mat, subset = uppDia)")
682 call disp%show( chol ,
format = cform )
683 call disp%show(
"call setResized(inv, shape(mat, IK))")
687 call disp%show(
"call setMatInv(inv, chol, auxil = choUpp, subset = lowDia)")
688 call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
690 call disp%show( inv ,
format = cform )
691 call disp%show(
"call setMatCopy(inv(1:,2:), rdpack, inv(2:,1:), rdpack, lowDia, transHerm) ! symmetrize `inv` for multiplication.")
692 call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
694 call disp%show( inv ,
format = cform )
695 call disp%show(
"mul = matmul(mat, inv)")
696 mul
= matmul(mat, inv)
698 call disp%show( mul ,
format = cform )
702 call disp%show(
"call setMatInv(inv, chol, auxil = choUpp, subset = uppDia)")
703 call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
705 call disp%show( inv ,
format = cform )
706 call disp%show(
"call setMatCopy(inv(2:,1:), rdpack, inv(1:,2:), rdpack, uppDia, transHerm) ! symmetrize `inv` for multiplication.")
707 call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
709 call disp%show( inv ,
format = cform )
710 call disp%show(
"mul = matmul(mat, inv)")
711 mul
= matmul(mat, inv)
713 call disp%show( mul ,
format = cform )
719 complex(TKG),
allocatable :: low(:,:), upp(:,:), mat(:,:), chol(:,:), inv(:,:), mul(:,:)
722 call disp%show(
"ndim = getUnifRand(1_IK, 6_IK)")
724 call disp%show(
"ndim ! matrix rank")
726 low
= getUnifRand((
1._TKG,
-1._TKG), (
+2._TKG,
+1._TKG), ndim, ndim)
727 call setMatInit(low, uppDia, (
0._TKG,
0._TKG),
cmplx(
getUnifRand(
1._TKG,
2._TKG, ndim),
0._TKG, TKG))
728 upp
= transpose(
conjg(low))
729 mat
= matmul(low, upp)
731 call disp%show( mat ,
format = cform )
732 call disp%show(
"chol = getMatChol(mat, subset = uppDia)")
735 call disp%show( chol ,
format = cform )
736 call disp%show(
"call setResized(inv, shape(mat, IK))")
740 call disp%show(
"call setMatInv(inv, chol, auxil = choUpp, subset = lowDia)")
741 call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
743 call disp%show( inv ,
format = cform )
744 call disp%show(
"call setMatCopy(inv(1:,2:), rdpack, inv(2:,1:), rdpack, lowDia, transHerm) ! symmetrize `inv` for multiplication.")
745 call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
747 call disp%show( inv ,
format = cform )
748 call disp%show(
"mul = matmul(mat, inv)")
749 mul
= matmul(mat, inv)
751 call disp%show( mul ,
format = cform )
755 call disp%show(
"call setMatInv(inv, chol, auxil = choUpp, subset = uppDia)")
756 call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
758 call disp%show( inv ,
format = cform )
759 call disp%show(
"call setMatCopy(inv(2:,1:), rdpack, inv(1:,2:), rdpack, uppDia, transHerm) ! symmetrize `inv` for multiplication.")
760 call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
762 call disp%show( inv ,
format = cform )
763 call disp%show(
"mul = matmul(mat, inv)")
764 mul
= matmul(mat, inv)
766 call disp%show( mul ,
format = cform )
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 and return a random positive-definite (correlation or covariance) matrix using the Gram meth...
Generate and return a scalar or a contiguous array of rank 1 of length s1 of randomly uniformly distr...
Verify the input assertion holds and if it does not, print the (optional) input message on stdout and...
Generate and return an object of type stop_type with the user-specified input attributes.
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...
Copy a desired subset of the input source matrix of arbitrary shape (:) or (:,:) to the target subset...
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 (:,...
Return the LU-Pivoted decomposition of the input square matrix mat(ndim,ndim).
Generate and return the conversion of the input value to an output Fortran string,...
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 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 reporting and handling errors.
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 procedures and generic interfaces for computing the Cholesky factorization of po...
This module contains procedures and generic interfaces relevant to copying (diagonal or upper/lower t...
This module contains procedures and generic interfaces relevant to generating and initializing matric...
This module contains procedures and generic interfaces relevant to the partially LU Pivoted decomposi...
This module contains the generic procedures for converting values of different types and kinds to For...
Generate and return an object of type display_type.
11call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia,
0._TKG,
0._TKG)
27call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia,
0._TKG,
0._TKG)
29 +1.00,
+2.00,
+3.00,
+2.00,
+1.00
30 +0.00,
+7.00,
+3.00,
+7.00,
+6.00
31 +0.00,
+0.00,
+7.00,
+2.00,
+8.00
32 +0.00,
+0.00,
+0.00,
+8.00,
+3.00
33 +0.00,
+0.00,
+0.00,
+0.00,
+3.00
37 +1.00,
-0.29,
-0.31,
+0.08,
+0.98
38 +0.00,
+0.14,
-0.06,
-0.11,
-0.01
39 +0.00,
+0.00,
+0.14,
-0.04,
-0.35
40 +0.00,
+0.00,
+0.00,
+0.12,
-0.12
41 +0.00,
+0.00,
+0.00,
+0.00,
+0.33
44 +1.00,
+0.00,
+0.00,
+0.00,
-0.00
45 +0.00,
+1.00,
-0.00,
+0.00,
+0.00
46 +0.00,
+0.00,
+1.00,
+0.00,
-0.00
47 +0.00,
+0.00,
+0.00,
+1.00,
+0.00
48 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
55call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia,
0._TKG,
0._TKG)
57 +6.00,
+8.00,
+7.00,
+5.00,
+9.00,
+3.00
58 +0.00,
+9.00,
+7.00,
+2.00,
+3.00,
+4.00
59 +0.00,
+0.00,
+6.00,
+2.00,
+2.00,
+3.00
60 +0.00,
+0.00,
+0.00,
+9.00,
+4.00,
+7.00
61 +0.00,
+0.00,
+0.00,
+0.00,
+4.00,
+8.00
62 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+9.00
66 +0.17,
-0.15,
-0.02,
-0.05,
-0.20,
+0.24
67 +0.00,
+0.11,
-0.13,
+0.00,
-0.02,
+0.01
68 +0.00,
+0.00,
+0.17,
-0.04,
-0.05,
+0.01
69 +0.00,
+0.00,
+0.00,
+0.11,
-0.11,
+0.01
70 +0.00,
+0.00,
+0.00,
+0.00,
+0.25,
-0.22
71 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.11
74 +1.00,
+0.00,
-0.00,
+0.00,
+0.00,
+0.00
75 +0.00,
+1.00,
+0.00,
+0.00,
+0.00,
+0.00
76 +0.00,
+0.00,
+1.00,
+0.00,
+0.00,
+0.00
77 +0.00,
+0.00,
+0.00,
+1.00,
+0.00,
+0.00
78 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
+0.00
79 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
86call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia,
0._TKG,
0._TKG)
88 +6.00,
+6.00,
+9.00,
+5.00,
+7.00,
+9.00
89 +0.00,
+4.00,
+6.00,
+8.00,
+9.00,
+7.00
90 +0.00,
+0.00,
+2.00,
+8.00,
+4.00,
+2.00
91 +0.00,
+0.00,
+0.00,
+6.00,
+6.00,
+2.00
92 +0.00,
+0.00,
+0.00,
+0.00,
+3.00,
+2.00
93 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+4.00
97 +0.17,
-0.25,
-0.00,
+0.19,
-0.03,
-0.02
98 +0.00,
+0.25,
-0.75,
+0.67,
-1.08,
+0.15
99 +0.00,
+0.00,
+0.50,
-0.67,
+0.67,
-0.25
100 +0.00,
+0.00,
+0.00,
+0.17,
-0.33,
+0.08
101 +0.00,
+0.00,
+0.00,
+0.00,
+0.33,
-0.17
102 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.25
103mul
= matmul(mat, inv)
105 +1.00,
+0.00,
+0.00,
+0.00,
-0.00,
+0.00
106 +0.00,
+1.00,
+0.00,
+0.00,
-0.00,
+0.00
107 +0.00,
+0.00,
+1.00,
+0.00,
+0.00,
+0.00
108 +0.00,
+0.00,
+0.00,
+1.00,
+0.00,
+0.00
109 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
+0.00
110 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
117call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia,
0._TKG,
0._TKG)
119 +7.00,
+2.00,
+5.00,
+6.00,
+5.00,
+8.00
120 +0.00,
+6.00,
+6.00,
+7.00,
+8.00,
+6.00
121 +0.00,
+0.00,
+6.00,
+6.00,
+8.00,
+1.00
122 +0.00,
+0.00,
+0.00,
+7.00,
+1.00,
+5.00
123 +0.00,
+0.00,
+0.00,
+0.00,
+2.00,
+8.00
124 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+2.00
128 +0.14,
-0.05,
-0.07,
-0.01,
+0.13,
-0.86
129 +0.00,
+0.17,
-0.17,
-0.02,
+0.01,
-0.40
130 +0.00,
+0.00,
+0.17,
-0.14,
-0.60,
+2.65
131 +0.00,
+0.00,
+0.00,
+0.14,
-0.07,
-0.07
132 +0.00,
+0.00,
+0.00,
+0.00,
+0.50,
-2.00
133 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.50
134mul
= matmul(mat, inv)
136 +1.00,
-0.00,
+0.00,
+0.00,
-0.00,
+0.00
137 +0.00,
+1.00,
+0.00,
-0.00,
+0.00,
+0.00
138 +0.00,
+0.00,
+1.00,
+0.00,
+0.00,
-0.00
139 +0.00,
+0.00,
+0.00,
+1.00,
+0.00,
+0.00
140 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
+0.00
141 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
148call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia,
0._TKG,
0._TKG)
159mul
= matmul(mat, inv)
170call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia,
0._TKG,
0._TKG)
181mul
= matmul(mat, inv)
192call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia,
0._TKG,
0._TKG)
199mul
= matmul(mat, inv)
208call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia,
0._TKG,
0._TKG)
210 +8.00,
+4.00,
+6.00,
+6.00,
+4.00
211 +0.00,
+5.00,
+5.00,
+2.00,
+6.00
212 +0.00,
+0.00,
+5.00,
+8.00,
+8.00
213 +0.00,
+0.00,
+0.00,
+9.00,
+8.00
214 +0.00,
+0.00,
+0.00,
+0.00,
+9.00
218 +0.12,
-0.10,
-0.05,
-0.02,
+0.07
219 +0.00,
+0.20,
-0.20,
+0.13,
-0.07
220 +0.00,
+0.00,
+0.20,
-0.18,
-0.02
221 +0.00,
+0.00,
+0.00,
+0.11,
-0.10
222 +0.00,
+0.00,
+0.00,
+0.00,
+0.11
223mul
= matmul(mat, inv)
225 +1.00,
+0.00,
+0.00,
+0.00,
-0.00
226 +0.00,
+1.00,
+0.00,
+0.00,
-0.00
227 +0.00,
+0.00,
+1.00,
+0.00,
+0.00
228 +0.00,
+0.00,
+0.00,
+1.00,
+0.00
229 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
236call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia,
0._TKG,
0._TKG)
238 +1.00,
+4.00,
+7.00,
+9.00
239 +0.00,
+2.00,
+6.00,
+9.00
240 +0.00,
+0.00,
+6.00,
+2.00
241 +0.00,
+0.00,
+0.00,
+1.00
245 +1.00,
-2.00,
+0.83,
+7.33
246 +0.00,
+0.50,
-0.50,
-3.50
247 +0.00,
+0.00,
+0.17,
-0.33
248 +0.00,
+0.00,
+0.00,
+1.00
249mul
= matmul(mat, inv)
251 +1.00,
+0.00,
+0.00,
+0.00
252 +0.00,
+1.00,
+0.00,
+0.00
253 +0.00,
+0.00,
+1.00,
+0.00
254 +0.00,
+0.00,
+0.00,
+1.00
266call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
268(
+1.11,
+1.27), (
+1.55,
+2.00), (
+1.24,
+1.43), (
+1.57,
+1.08), (
+1.72,
+1.59), (
+1.45,
+1.79)
269(
+0.00,
+0.00), (
+1.76,
+1.58), (
+1.61,
+1.51), (
+1.27,
+1.74), (
+1.60,
+1.84), (
+1.96,
+1.20)
270(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.18,
+1.82), (
+1.87,
+1.42), (
+1.34,
+1.23), (
+1.52,
+1.81)
271(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.45,
+1.18), (
+1.36,
+1.30), (
+1.45,
+1.05)
272(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.62,
+1.20), (
+1.89,
+1.78)
273(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.78,
+1.66)
277(
+0.39,
-0.45), (
-0.50,
+0.40), (
+0.11,
-0.08), (
+0.17,
+0.29), (
-0.05,
-0.10), (
-0.26,
-0.12)
278(
+0.00,
+0.00), (
+0.31,
-0.28), (
-0.24,
+0.36), (
-0.14,
-0.23), (
-0.09,
+0.19), (
+0.26,
-0.04)
279(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.25,
-0.39), (
-0.30,
+0.50), (
+0.07,
-0.10), (
-0.19,
+0.06)
280(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.41,
-0.34), (
-0.42,
+0.26), (
+0.18,
+0.00)
281(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.40,
-0.29), (
-0.42,
+0.31)
282(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.30,
-0.28)
283mul
= matmul(mat, inv)
285(
+1.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
286(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
-0.00,
-0.00), (
-0.00,
+0.00)
287(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
288(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
289(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
-0.00), (
+0.00,
+0.00)
290(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
297call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
299(
+1.25,
+1.06), (
+1.16,
+1.10)
300(
+0.00,
+0.00), (
+1.10,
+1.58)
304(
+0.47,
-0.40), (
-0.31,
+0.40)
305(
+0.00,
+0.00), (
+0.30,
-0.43)
306mul
= matmul(mat, inv)
308(
+1.00,
+0.00), (
-0.00,
+0.00)
309(
+0.00,
+0.00), (
+1.00,
+0.00)
316call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
318(
+1.52,
+1.34), (
+1.03,
+1.27), (
+1.60,
+1.09), (
+1.13,
+1.53), (
+1.64,
+1.91)
319(
+0.00,
+0.00), (
+1.67,
+1.48), (
+1.38,
+1.65), (
+1.14,
+1.13), (
+1.05,
+1.25)
320(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.22,
+1.10), (
+1.61,
+1.11), (
+1.23,
+1.25)
321(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.51,
+1.63), (
+1.49,
+1.11)
322(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.48,
+1.83)
326(
+0.37,
-0.33), (
-0.31,
+0.19), (
+0.05,
+0.25), (
-0.22,
-0.11), (
-0.04,
+0.08)
327(
+0.00,
+0.00), (
+0.33,
-0.30), (
-0.49,
+0.33), (
+0.12,
-0.15), (
+0.05,
+0.07)
328(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.45,
-0.41), (
-0.31,
+0.44), (
-0.16,
-0.06)
329(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.31,
-0.33), (
-0.17,
+0.31)
330(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.27,
-0.33)
331mul
= matmul(mat, inv)
333(
+1.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
-0.00)
334(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
-0.00)
335(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.00,
+0.00), (
+0.00,
-0.00)
336(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
-0.00)
337(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
344call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
346(
+1.74,
+1.48), (
+1.99,
+1.43), (
+1.26,
+1.17), (
+1.86,
+1.75), (
+1.22,
+1.97), (
+1.73,
+1.70)
347(
+0.00,
+0.00), (
+1.75,
+1.94), (
+1.66,
+1.39), (
+1.86,
+1.52), (
+1.42,
+1.73), (
+1.37,
+1.52)
348(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.70,
+1.17), (
+1.54,
+1.06), (
+1.40,
+1.08), (
+1.57,
+1.00)
349(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.83,
+1.91), (
+1.66,
+1.21), (
+1.96,
+1.14)
350(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.43,
+1.53), (
+1.24,
+1.18)
351(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.33,
+1.27)
355(
+0.33,
-0.28), (
-0.25,
+0.33), (
-0.02,
-0.12), (
-0.09,
+0.05), (
-0.03,
-0.06), (
+0.02,
+0.11)
356(
+0.00,
+0.00), (
+0.26,
-0.28), (
-0.30,
+0.27), (
-0.03,
+0.06), (
-0.06,
-0.04), (
+0.01,
-0.07)
357(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.40,
-0.27), (
-0.24,
+0.25), (
-0.11,
+0.00), (
-0.03,
-0.02)
358(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.26,
-0.27), (
-0.20,
+0.31), (
-0.05,
+0.11)
359(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.33,
-0.35), (
-0.30,
+0.32)
360(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.39,
-0.38)
361mul
= matmul(mat, inv)
363(
+1.00,
-0.00), (
+0.00,
+0.00), (
-0.00,
-0.00), (
-0.00,
-0.00), (
-0.00,
-0.00), (
+0.00,
+0.00)
364(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
365(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
-0.00), (
+0.00,
+0.00), (
-0.00,
+0.00), (
+0.00,
+0.00)
366(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
-0.00), (
-0.00,
+0.00), (
+0.00,
-0.00)
367(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
368(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
-0.00)
375call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
377(
+1.12,
+1.34), (
+1.22,
+1.16), (
+1.25,
+1.81), (
+1.08,
+1.22)
378(
+0.00,
+0.00), (
+1.46,
+1.17), (
+1.48,
+1.20), (
+1.42,
+1.87)
379(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.92,
+1.14), (
+1.55,
+1.39)
380(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.93,
+1.10)
384(
+0.37,
-0.44), (
-0.36,
+0.37), (
-0.16,
-0.02), (
+0.29,
+0.06)
385(
+0.00,
+0.00), (
+0.42,
-0.33), (
-0.39,
+0.23), (
-0.14,
+0.02)
386(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.39,
-0.23), (
-0.40,
+0.13)
387(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.39,
-0.22)
388mul
= matmul(mat, inv)
390(
+1.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
-0.00)
391(
+0.00,
+0.00), (
+1.00,
-0.00), (
+0.00,
+0.00), (
-0.00,
-0.00)
392(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
-0.00), (
+0.00,
+0.00)
393(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
400call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
402(
+1.82,
+1.85), (
+1.20,
+1.98)
403(
+0.00,
+0.00), (
+1.53,
+1.66)
407(
+0.27,
-0.27), (
-0.33,
+0.22)
408(
+0.00,
+0.00), (
+0.30,
-0.33)
409mul
= matmul(mat, inv)
411(
+1.00,
+0.00), (
+0.00,
+0.00)
412(
+0.00,
+0.00), (
+1.00,
+0.00)
419call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
421(
+1.96,
+1.81), (
+1.13,
+1.24), (
+1.38,
+1.67), (
+1.88,
+1.10), (
+1.45,
+1.56), (
+1.39,
+1.67)
422(
+0.00,
+0.00), (
+1.97,
+1.31), (
+1.28,
+1.49), (
+1.67,
+1.18), (
+1.00,
+1.84), (
+1.38,
+2.00)
423(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.58,
+1.97), (
+1.81,
+1.93), (
+1.67,
+1.58), (
+1.58,
+1.73)
424(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.29,
+1.09), (
+1.97,
+1.45), (
+1.01,
+1.43)
425(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.98,
+1.03), (
+1.43,
+1.41)
426(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.24,
+1.48)
430(
+0.28,
-0.25), (
-0.23,
+0.13), (
-0.06,
+0.12), (
+0.08,
+0.04), (
-0.08,
+0.01), (
+0.06,
-0.05)
431(
+0.00,
+0.00), (
+0.35,
-0.23), (
-0.27,
+0.19), (
+0.05,
+0.07), (
-0.12,
-0.20), (
-0.05,
+0.14)
432(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.25,
-0.31), (
-0.44,
+0.43), (
+0.22,
-0.16), (
-0.06,
+0.21)
433(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.45,
-0.38), (
-0.55,
+0.34), (
+0.10,
-0.09)
434(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.40,
-0.21), (
-0.39,
+0.25)
435(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.33,
-0.40)
436mul
= matmul(mat, inv)
438(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
-0.00), (
+0.00,
+0.00)
439(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00)
440(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
441(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
442(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
443(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
450call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
452(
+1.08,
+1.89), (
+1.34,
+1.69), (
+1.30,
+1.27)
453(
+0.00,
+0.00), (
+1.24,
+1.84), (
+1.30,
+1.40)
454(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+1.27)
458(
+0.23,
-0.40), (
-0.19,
+0.40), (
-0.01,
-0.02)
459(
+0.00,
+0.00), (
+0.25,
-0.37), (
-0.26,
+0.46)
460(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.38,
-0.49)
461mul
= matmul(mat, inv)
463(
+1.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
+0.00)
464(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
-0.00)
465(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
-0.00)
472call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
474(
+1.51,
+1.67), (
+1.75,
+1.85), (
+1.12,
+1.66), (
+1.03,
+1.42), (
+1.58,
+1.50), (
+1.36,
+1.23)
475(
+0.00,
+0.00), (
+1.31,
+1.57), (
+1.14,
+1.37), (
+1.93,
+1.20), (
+1.35,
+1.27), (
+1.96,
+1.35)
476(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.69,
+1.15), (
+1.17,
+1.50), (
+1.12,
+1.66), (
+1.02,
+1.87)
477(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.47,
+1.74), (
+1.21,
+1.79), (
+1.58,
+1.49)
478(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.40,
+2.00), (
+1.22,
+1.14)
479(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.73,
+1.72)
483(
+0.30,
-0.33), (
-0.34,
+0.43), (
+0.00,
-0.09), (
-0.06,
-0.21), (
+0.03,
+0.22), (
+0.05,
-0.12)
484(
+0.00,
+0.00), (
+0.31,
-0.38), (
-0.35,
+0.24), (
+0.12,
+0.26), (
+0.02,
-0.10), (
-0.00,
+0.14)
485(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.41,
-0.28), (
-0.35,
+0.22), (
-0.03,
+0.03), (
-0.09,
-0.09)
486(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.28,
-0.33), (
-0.26,
+0.29), (
-0.08,
+0.10)
487(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.24,
-0.34), (
-0.15,
+0.24)
488(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.29,
-0.29)
489mul
= matmul(mat, inv)
491(
+1.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
-0.00)
492(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
-0.00), (
+0.00,
-0.00)
493(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.00,
+0.00), (
+0.00,
+0.00), (
-0.00,
+0.00)
494(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
-0.00), (
+0.00,
-0.00), (
+0.00,
+0.00)
495(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.00,
-0.00)
496(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
503call setMatInit(mat(
2 : ndim,
1 : ndim
- 1), lowDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
505(
+1.60,
+1.04), (
+1.67,
+1.54), (
+1.08,
+1.63)
506(
+0.00,
+0.00), (
+1.73,
+1.61), (
+1.84,
+1.27)
507(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.62,
+1.93)
511(
+0.44,
-0.29), (
-0.42,
+0.28), (
-0.07,
-0.15)
512(
+0.00,
+0.00), (
+0.31,
-0.29), (
-0.20,
+0.32)
513(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.26,
-0.30)
514mul
= matmul(mat, inv)
516(
+1.00,
+0.00), (
-0.00,
+0.00), (
+0.00,
-0.00)
517(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
-0.00)
518(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
530call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia,
0._TKG,
0._TKG)
539mul
= matmul(mat, inv)
549call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia,
0._TKG,
0._TKG)
556mul
= matmul(mat, inv)
565call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia,
0._TKG,
0._TKG)
572mul
= matmul(mat, inv)
581call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia,
0._TKG,
0._TKG)
588mul
= matmul(mat, inv)
597call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia,
0._TKG,
0._TKG)
604mul
= matmul(mat, inv)
613call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia,
0._TKG,
0._TKG)
622mul
= matmul(mat, inv)
632call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia,
0._TKG,
0._TKG)
634 +3.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
635 +3.00,
+6.00,
+0.00,
+0.00,
+0.00,
+0.00
636 +4.00,
+3.00,
+6.00,
+0.00,
+0.00,
+0.00
637 +6.00,
+7.00,
+3.00,
+6.00,
+0.00,
+0.00
638 +2.00,
+7.00,
+1.00,
+6.00,
+2.00,
+0.00
639 +7.00,
+7.00,
+2.00,
+8.00,
+7.00,
+7.00
643 +0.33,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
644 -0.17,
+0.17,
+0.00,
+0.00,
+0.00,
+0.00
645 -0.14,
-0.08,
+0.17,
+0.00,
+0.00,
+0.00
646 -0.07,
-0.15,
-0.08,
+0.17,
+0.00,
+0.00
647 +0.53,
-0.08,
+0.17,
-0.50,
+0.50,
+0.00
648 -0.58,
+0.12,
-0.12,
+0.31,
-0.50,
+0.14
649mul
= matmul(mat, inv)
651 +1.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
652 +0.00,
+1.00,
+0.00,
+0.00,
+0.00,
+0.00
653 +0.00,
+0.00,
+1.00,
+0.00,
+0.00,
+0.00
654 -0.00,
+0.00,
+0.00,
+1.00,
+0.00,
+0.00
655 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
+0.00
656 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
663call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia,
0._TKG,
0._TKG)
670mul
= matmul(mat, inv)
679call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia,
0._TKG,
0._TKG)
686mul
= matmul(mat, inv)
695call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia,
0._TKG,
0._TKG)
704mul
= matmul(mat, inv)
719call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
721(
+1.37,
+1.02), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
722(
+1.98,
+1.39), (
+1.88,
+1.37), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
723(
+1.91,
+1.81), (
+1.63,
+1.03), (
+1.25,
+1.21), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
724(
+1.08,
+1.14), (
+1.73,
+1.25), (
+1.78,
+1.19), (
+1.55,
+1.40), (
+0.00,
+0.00), (
+0.00,
+0.00)
725(
+1.91,
+1.96), (
+1.41,
+1.97), (
+1.10,
+1.37), (
+1.17,
+1.53), (
+1.26,
+1.84), (
+0.00,
+0.00)
726(
+1.56,
+1.69), (
+1.09,
+1.55), (
+1.47,
+1.93), (
+1.70,
+1.97), (
+1.48,
+1.88), (
+1.91,
+1.19)
730(
+0.47,
-0.35), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
731(
-0.48,
+0.37), (
+0.35,
-0.25), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
732(
-0.26,
+0.02), (
-0.32,
+0.35), (
+0.41,
-0.40), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
733(
+0.34,
-0.26), (
-0.05,
-0.11), (
-0.36,
+0.47), (
+0.35,
-0.32), (
+0.00,
+0.00), (
+0.00,
+0.00)
734(
-0.06,
+0.31), (
-0.09,
+0.08), (
-0.01,
-0.08), (
-0.29,
+0.29), (
+0.25,
-0.37), (
+0.00,
+0.00)
735(
-0.08,
+0.04), (
+0.25,
-0.06), (
-0.03,
-0.06), (
-0.10,
+0.04), (
-0.39,
+0.28), (
+0.38,
-0.24)
736mul
= matmul(mat, inv)
738(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
739(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
740(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
741(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
742(
+0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
-0.00), (
+0.00,
-0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
743(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
750call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
752(
+1.26,
+1.95), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
753(
+1.26,
+1.32), (
+1.16,
+1.19), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
754(
+1.09,
+1.30), (
+1.83,
+1.70), (
+1.75,
+1.99), (
+0.00,
+0.00), (
+0.00,
+0.00)
755(
+1.00,
+1.42), (
+1.90,
+1.08), (
+1.05,
+1.60), (
+1.66,
+1.88), (
+0.00,
+0.00)
756(
+1.90,
+1.78), (
+1.20,
+1.32), (
+1.28,
+1.20), (
+1.06,
+1.60), (
+1.69,
+1.68)
760(
+0.23,
-0.36), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
761(
-0.26,
+0.39), (
+0.42,
-0.43), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
762(
+0.05,
-0.16), (
-0.35,
+0.44), (
+0.25,
-0.28), (
+0.00,
+0.00), (
+0.00,
+0.00)
763(
-0.14,
-0.04), (
+0.09,
+0.17), (
-0.22,
+0.19), (
+0.26,
-0.30), (
+0.00,
+0.00)
764(
+0.04,
+0.30), (
-0.12,
-0.18), (
+0.03,
+0.10), (
-0.26,
+0.19), (
+0.30,
-0.30)
765mul
= matmul(mat, inv)
767(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
768(
+0.00,
-0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
769(
-0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
770(
+0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
+1.00,
-0.00), (
+0.00,
+0.00)
771(
-0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
778call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
780(
+1.06,
+1.54), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
781(
+1.97,
+1.99), (
+1.70,
+1.94), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
782(
+1.55,
+1.63), (
+1.26,
+1.23), (
+1.24,
+1.63), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
783(
+1.36,
+1.57), (
+1.13,
+1.04), (
+1.14,
+1.14), (
+1.13,
+1.86), (
+0.00,
+0.00), (
+0.00,
+0.00)
784(
+1.05,
+1.66), (
+1.30,
+1.64), (
+1.08,
+1.72), (
+1.56,
+1.70), (
+1.13,
+1.24), (
+0.00,
+0.00)
785(
+1.98,
+1.50), (
+1.07,
+1.71), (
+1.80,
+1.88), (
+1.41,
+1.28), (
+1.09,
+1.91), (
+1.36,
+1.34)
789(
+0.30,
-0.44), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
790(
-0.30,
+0.50), (
+0.26,
-0.29), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
791(
-0.08,
+0.06), (
-0.18,
+0.28), (
+0.30,
-0.39), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
792(
-0.06,
+0.01), (
-0.03,
+0.01), (
-0.14,
+0.33), (
+0.24,
-0.39), (
+0.00,
+0.00), (
+0.00,
+0.00)
793(
+0.17,
-0.21), (
-0.02,
+0.03), (
-0.24,
-0.06), (
-0.33,
+0.54), (
+0.40,
-0.44), (
+0.00,
+0.00)
794(
+0.04,
+0.28), (
-0.01,
-0.18), (
-0.04,
+0.32), (
+0.31,
-0.10), (
-0.58,
+0.36), (
+0.37,
-0.37)
795mul
= matmul(mat, inv)
797(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
798(
-0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
799(
-0.00,
+0.00), (
-0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
800(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
801(
+0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
+0.00), (
+1.00,
-0.00), (
+0.00,
+0.00)
802(
+0.00,
+0.00), (
+0.00,
+0.00), (
-0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
809call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
811(
+1.62,
+1.61), (
+0.00,
+0.00)
812(
+1.78,
+1.89), (
+1.73,
+1.68)
816(
+0.31,
-0.31), (
+0.00,
+0.00)
817(
-0.35,
+0.32), (
+0.30,
-0.29)
818mul
= matmul(mat, inv)
820(
+1.00,
+0.00), (
+0.00,
+0.00)
821(
-0.00,
+0.00), (
+1.00,
-0.00)
828call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
830(
+1.91,
+1.99), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
831(
+1.53,
+1.13), (
+1.78,
+1.94), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
832(
+1.98,
+1.47), (
+1.14,
+1.37), (
+1.37,
+1.48), (
+0.00,
+0.00), (
+0.00,
+0.00)
833(
+1.67,
+1.27), (
+1.05,
+1.30), (
+1.11,
+1.44), (
+1.44,
+1.59), (
+0.00,
+0.00)
834(
+1.40,
+1.18), (
+1.37,
+1.81), (
+1.98,
+1.75), (
+1.72,
+1.41), (
+1.59,
+1.35)
838(
+0.25,
-0.26), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
839(
-0.14,
+0.22), (
+0.26,
-0.28), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
840(
-0.11,
+0.18), (
-0.24,
+0.24), (
+0.34,
-0.36), (
+0.00,
+0.00), (
+0.00,
+0.00)
841(
+0.03,
-0.02), (
+0.01,
+0.02), (
-0.31,
+0.29), (
+0.31,
-0.35), (
+0.00,
+0.00)
842(
+0.09,
-0.18), (
-0.04,
-0.08), (
-0.11,
+0.14), (
-0.33,
+0.37), (
+0.37,
-0.31)
843mul
= matmul(mat, inv)
845(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
846(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
847(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
848(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
849(
+0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
856call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
863mul
= matmul(mat, inv)
872call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
874(
+1.22,
+1.64), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
875(
+1.31,
+1.97), (
+1.82,
+1.92), (
+0.00,
+0.00), (
+0.00,
+0.00)
876(
+1.40,
+1.02), (
+1.56,
+1.22), (
+1.56,
+1.24), (
+0.00,
+0.00)
877(
+1.60,
+1.35), (
+1.05,
+1.32), (
+1.33,
+1.71), (
+1.97,
+1.10)
881(
+0.29,
-0.39), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
882(
-0.32,
+0.30), (
+0.26,
-0.27), (
+0.00,
+0.00), (
+0.00,
+0.00)
883(
+0.07,
+0.05), (
-0.26,
+0.27), (
+0.39,
-0.31), (
+0.00,
+0.00)
884(
-0.08,
+0.12), (
+0.07,
-0.03), (
-0.46,
+0.13), (
+0.39,
-0.22)
885mul
= matmul(mat, inv)
887(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
888(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
889(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
-0.00), (
+0.00,
+0.00)
890(
+0.00,
-0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
+1.00,
-0.00)
897call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
899(
+1.40,
+1.86), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
900(
+1.73,
+1.31), (
+1.63,
+1.04), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
901(
+1.46,
+1.14), (
+1.93,
+1.76), (
+1.26,
+1.02), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
902(
+1.61,
+1.14), (
+1.52,
+1.64), (
+1.19,
+1.03), (
+1.20,
+1.29), (
+0.00,
+0.00), (
+0.00,
+0.00)
903(
+1.92,
+1.56), (
+1.09,
+1.29), (
+1.61,
+1.75), (
+1.63,
+1.66), (
+1.67,
+1.30), (
+0.00,
+0.00)
904(
+1.55,
+1.61), (
+1.88,
+1.48), (
+1.70,
+1.95), (
+1.75,
+1.51), (
+1.27,
+1.77), (
+1.02,
+1.87)
908(
+0.26,
-0.34), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
909(
-0.32,
+0.36), (
+0.44,
-0.28), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
910(
+0.26,
-0.15), (
-0.73,
+0.40), (
+0.48,
-0.39), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
911(
-0.02,
+0.14), (
+0.05,
-0.08), (
-0.39,
+0.39), (
+0.39,
-0.42), (
+0.00,
+0.00), (
+0.00,
+0.00)
912(
-0.28,
+0.13), (
+0.42,
-0.09), (
-0.12,
-0.03), (
-0.48,
+0.40), (
+0.37,
-0.29), (
+0.00,
+0.00)
913(
-0.03,
-0.17), (
-0.02,
+0.06), (
-0.09,
+0.05), (
+0.21,
+0.11), (
-0.34,
+0.34), (
+0.22,
-0.41)
914mul
= matmul(mat, inv)
916(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
917(
-0.00,
-0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
918(
+0.00,
+0.00), (
-0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
919(
+0.00,
-0.00), (
-0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
920(
+0.00,
-0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
921(
-0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
928call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
930(
+1.93,
+1.18), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
931(
+1.37,
+1.72), (
+1.18,
+1.69), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
932(
+1.13,
+1.93), (
+1.39,
+1.86), (
+1.16,
+1.95), (
+0.00,
+0.00), (
+0.00,
+0.00)
933(
+1.03,
+1.56), (
+1.43,
+1.13), (
+1.67,
+1.83), (
+1.74,
+1.61), (
+0.00,
+0.00)
934(
+1.30,
+1.04), (
+1.77,
+1.69), (
+1.02,
+1.63), (
+1.30,
+1.55), (
+1.15,
+1.26)
938(
+0.38,
-0.23), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
939(
-0.39,
+0.27), (
+0.28,
-0.40), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
940(
-0.01,
-0.09), (
-0.24,
+0.44), (
+0.22,
-0.38), (
+0.00,
+0.00), (
+0.00,
+0.00)
941(
-0.05,
-0.03), (
+0.10,
-0.11), (
-0.27,
+0.38), (
+0.31,
-0.29), (
+0.00,
+0.00)
942(
+0.25,
-0.01), (
-0.13,
+0.29), (
+0.01,
-0.06), (
-0.38,
+0.33), (
+0.40,
-0.43)
943mul
= matmul(mat, inv)
945(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
946(
+0.00,
-0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
947(
-0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
948(
+0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
949(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
+1.00,
-0.00)
956call setMatInit(mat(
1 : ndim
- 1,
2 : ndim), uppDia, (
0._TKG,
0._TKG), (
0._TKG,
0._TKG))
958(
+1.33,
+1.83), (
+0.00,
+0.00)
959(
+1.45,
+1.94), (
+1.09,
+1.01)
963(
+0.26,
-0.36), (
+0.00,
+0.00)
964(
-0.52,
+0.50), (
+0.49,
-0.46)
965mul
= matmul(mat, inv)
967(
+1.00,
+0.00), (
+0.00,
+0.00)
968(
+0.00,
+0.00), (
+1.00,
+0.00)
991mul
= matmul(mat, inv)
1004 +1.00,
+5.00,
+9.00,
+1.00,
+6.00
1005 +0.00,
+1.00,
+3.00,
+8.00,
+2.00
1006 +0.00,
+0.00,
+1.00,
+7.00,
+9.00
1007 +0.00,
+0.00,
+0.00,
+1.00,
+9.00
1008 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
1012 +1.00,
-5.00,
+6.00,
-3.00,
-23.00
1013 +0.00,
+1.00,
-3.00,
+13.00,
-92.00
1014 +0.00,
+0.00,
+1.00,
-7.00,
+54.00
1015 +0.00,
+0.00,
+0.00,
+1.00,
-9.00
1016 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
1017mul
= matmul(mat, inv)
1019 +1.00,
+0.00,
+0.00,
+0.00,
+0.00
1020 +0.00,
+1.00,
+0.00,
+0.00,
+0.00
1021 +0.00,
+0.00,
+1.00,
+0.00,
+0.00
1022 +0.00,
+0.00,
+0.00,
+1.00,
+0.00
1023 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
1038 +1.00,
-6.00,
+29.00
1041mul
= matmul(mat, inv)
1061mul
= matmul(mat, inv)
1079 +1.00,
-7.00,
+41.00
1082mul
= matmul(mat, inv)
1095 +1.00,
+8.00,
+2.00,
+7.00,
+2.00,
+4.00
1096 +0.00,
+1.00,
+5.00,
+4.00,
+7.00,
+8.00
1097 +0.00,
+0.00,
+1.00,
+9.00,
+9.00,
+1.00
1098 +0.00,
+0.00,
+0.00,
+1.00,
+1.00,
+8.00
1099 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
+7.00
1100 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
1104 +1.00,
-8.00,
+38.00,
-317.00,
+29.00,
+2355.00
1105 +0.00,
+1.00,
-5.00,
+41.00,
-3.00,
-310.00
1106 +0.00,
+0.00,
+1.00,
-9.00,
-0.00,
+71.00
1107 +0.00,
+0.00,
+0.00,
+1.00,
-1.00,
-1.00
1108 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
-7.00
1109 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
1110mul
= matmul(mat, inv)
1112 +1.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
1113 +0.00,
+1.00,
+0.00,
+0.00,
+0.00,
+0.00
1114 +0.00,
+0.00,
+1.00,
+0.00,
+0.00,
+0.00
1115 +0.00,
+0.00,
+0.00,
+1.00,
+0.00,
+0.00
1116 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
+0.00
1117 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
1126 +1.00,
+4.00,
+2.00,
+9.00,
+1.00
1127 +0.00,
+1.00,
+1.00,
+6.00,
+5.00
1128 +0.00,
+0.00,
+1.00,
+6.00,
+3.00
1129 +0.00,
+0.00,
+0.00,
+1.00,
+8.00
1130 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
1134 +1.00,
-4.00,
+2.00,
+3.00,
-11.00
1135 +0.00,
+1.00,
-1.00,
-0.00,
-2.00
1136 +0.00,
+0.00,
+1.00,
-6.00,
+45.00
1137 +0.00,
+0.00,
+0.00,
+1.00,
-8.00
1138 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
1139mul
= matmul(mat, inv)
1141 +1.00,
+0.00,
+0.00,
+0.00,
+0.00
1142 +0.00,
+1.00,
+0.00,
+0.00,
+0.00
1143 +0.00,
+0.00,
+1.00,
+0.00,
+0.00
1144 +0.00,
+0.00,
+0.00,
+1.00,
+0.00
1145 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
1154 +1.00,
+8.00,
+4.00,
+1.00,
+6.00,
+5.00
1155 +0.00,
+1.00,
+9.00,
+1.00,
+2.00,
+6.00
1156 +0.00,
+0.00,
+1.00,
+8.00,
+4.00,
+5.00
1157 +0.00,
+0.00,
+0.00,
+1.00,
+6.00,
+4.00
1158 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
+6.00
1159 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
1163 +1.00,
-8.00,
+68.00,
-537.00,
+2960.00,
-15909.00
1164 +0.00,
+1.00,
-9.00,
+71.00,
-392.00,
+2107.00
1165 +0.00,
+0.00,
+1.00,
-8.00,
+44.00,
-237.00
1166 +0.00,
+0.00,
+0.00,
+1.00,
-6.00,
+32.00
1167 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
-6.00
1168 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
1169mul
= matmul(mat, inv)
1171 +1.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
1172 +0.00,
+1.00,
+0.00,
+0.00,
+0.00,
+0.00
1173 +0.00,
+0.00,
+1.00,
+0.00,
+0.00,
+0.00
1174 +0.00,
+0.00,
+0.00,
+1.00,
+0.00,
+0.00
1175 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
+0.00
1176 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
1185 +1.00,
+7.00,
+8.00,
+2.00,
+4.00
1186 +0.00,
+1.00,
+2.00,
+2.00,
+6.00
1187 +0.00,
+0.00,
+1.00,
+2.00,
+8.00
1188 +0.00,
+0.00,
+0.00,
+1.00,
+7.00
1189 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
1193 +1.00,
-7.00,
+6.00,
-0.00,
-10.00
1194 +0.00,
+1.00,
-2.00,
+2.00,
-4.00
1195 +0.00,
+0.00,
+1.00,
-2.00,
+6.00
1196 +0.00,
+0.00,
+0.00,
+1.00,
-7.00
1197 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
1198mul
= matmul(mat, inv)
1200 +1.00,
+0.00,
+0.00,
+0.00,
+0.00
1201 +0.00,
+1.00,
+0.00,
+0.00,
+0.00
1202 +0.00,
+0.00,
+1.00,
+0.00,
+0.00
1203 +0.00,
+0.00,
+0.00,
+1.00,
+0.00
1204 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
1213 +1.00,
+8.00,
+3.00,
+1.00,
+9.00,
+7.00
1214 +0.00,
+1.00,
+6.00,
+8.00,
+9.00,
+7.00
1215 +0.00,
+0.00,
+1.00,
+2.00,
+5.00,
+9.00
1216 +0.00,
+0.00,
+0.00,
+1.00,
+2.00,
+5.00
1217 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
+5.00
1218 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
1222 +1.00,
-8.00,
+45.00,
-27.00,
-108.00,
+319.00
1223 +0.00,
+1.00,
-6.00,
+4.00,
+13.00,
-38.00
1224 +0.00,
+0.00,
+1.00,
-2.00,
-1.00,
+6.00
1225 +0.00,
+0.00,
+0.00,
+1.00,
-2.00,
+5.00
1226 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
-5.00
1227 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
1228mul
= matmul(mat, inv)
1230 +1.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
1231 +0.00,
+1.00,
+0.00,
+0.00,
+0.00,
+0.00
1232 +0.00,
+0.00,
+1.00,
+0.00,
+0.00,
+0.00
1233 +0.00,
+0.00,
+0.00,
+1.00,
+0.00,
+0.00
1234 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
+0.00
1235 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
1246mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1247call setMatInit(mat, lowDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1249(
+1.00,
+0.00), (
-0.64,
+0.81), (
+0.73,
+0.84), (
+0.24,
+0.31)
1250(
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.81,
-0.97), (
-0.60,
+0.31)
1251(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.30,
+0.95)
1252(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1256(
+1.00,
+0.00), (
+0.64,
-0.81), (
+0.57,
-0.88), (
-1.12,
-1.27)
1257(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.81,
+0.97), (
+1.28,
-1.37)
1258(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.30,
-0.95)
1259(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1260mul
= matmul(mat, inv)
1262(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
-0.00,
-0.00)
1263(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1264(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1265(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1271mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1272call setMatInit(mat, lowDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1274(
+1.00,
+0.00), (
-0.98,
-0.48), (
+0.24,
+0.02)
1275(
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.05,
-0.86)
1276(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1280(
+1.00,
+0.00), (
+0.98,
+0.48), (
-0.60,
+0.86)
1281(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.05,
+0.86)
1282(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1283mul
= matmul(mat, inv)
1285(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1286(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1287(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1293mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1294call setMatInit(mat, lowDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1296(
+1.00,
+0.00), (
-0.26,
-0.48), (
+0.34,
+0.11), (
+0.21,
-0.46), (
-0.04,
-0.69), (
-0.75,
+0.81)
1297(
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.79,
-0.71), (
-0.31,
+0.58), (
+0.75,
+0.11), (
+0.08,
-0.11)
1298(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.09,
-0.77), (
+0.82,
-0.22), (
+0.64,
+0.94)
1299(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.44,
-0.46), (
+0.78,
-0.42)
1300(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.80,
+0.88)
1301(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1305(
+1.00,
+0.00), (
+0.26,
+0.48), (
-0.48,
+0.45), (
-0.15,
+0.05), (
+0.24,
-0.27), (
+1.46,
-1.20)
1306(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.79,
+0.71), (
-0.31,
-0.04), (
-1.40,
-0.65), (
-1.36,
-0.47)
1307(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.09,
+0.77), (
-1.14,
-0.16), (
-1.95,
-0.70)
1308(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.44,
+0.46), (
-0.73,
+1.17)
1309(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.80,
-0.88)
1310(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1311mul
= matmul(mat, inv)
1313(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
-0.00,
+0.00), (
-0.00,
+0.00)
1314(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
-0.00)
1315(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00)
1316(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00)
1317(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1318(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1324mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1325call setMatInit(mat, lowDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1327(
+1.00,
+0.00), (
+0.72,
+0.01), (
+0.71,
+0.87)
1328(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.60,
+0.65)
1329(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1333(
+1.00,
+0.00), (
-0.72,
-0.01), (
-0.29,
-0.39)
1334(
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.60,
-0.65)
1335(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1336mul
= matmul(mat, inv)
1338(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1339(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1340(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1346mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1347call setMatInit(mat, lowDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1349(
+1.00,
+0.00), (
-0.33,
+0.90), (
+0.83,
-0.17), (
+0.83,
+0.67), (
+0.82,
+0.90), (
+0.90,
+0.06)
1350(
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.51,
-0.76), (
-0.58,
-0.18), (
+0.22,
-0.28), (
+0.25,
+0.78)
1351(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.26,
+0.25), (
-0.87,
+0.21), (
-0.79,
-0.15)
1352(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.96,
-0.19), (
+0.77,
+0.98)
1353(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.20,
+0.71)
1354(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1358(
+1.00,
+0.00), (
+0.33,
-0.90), (
+0.02,
-0.05), (
-0.50,
-1.13), (
-0.90,
-1.83), (
-3.49,
+2.25)
1359(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.51,
+0.76), (
+0.64,
-0.15), (
+1.02,
+0.81), (
-0.23,
-1.51)
1360(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.26,
-0.25), (
+0.66,
-0.50), (
+0.26,
+0.23)
1361(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.96,
+0.19), (
-0.83,
-1.70)
1362(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.20,
-0.71)
1363(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1364mul
= matmul(mat, inv)
1366(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00)
1367(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
1368(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1369(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1370(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1371(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1377mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1378call setMatInit(mat, lowDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1380(
+1.00,
+0.00), (
+0.71,
+0.22), (
+0.29,
-0.39), (
+0.20,
-0.50), (
+0.22,
-0.38), (
+0.17,
+0.15)
1381(
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.36,
-0.34), (
-0.53,
+0.59), (
+0.57,
+0.54), (
+0.56,
+0.96)
1382(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.97,
+0.13), (
+0.90,
+0.79), (
+0.54,
-0.48)
1383(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.59,
+0.61), (
+0.67,
+0.69)
1384(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.03,
-0.19)
1385(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1389(
+1.00,
+0.00), (
-0.71,
-0.22), (
-0.46,
+0.07), (
-1.14,
+0.93), (
+1.78,
+1.34), (
+1.34,
+0.85)
1390(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.36,
+0.34), (
+0.92,
-0.31), (
-1.35,
-1.51), (
-1.42,
-1.61)
1391(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.97,
-0.13), (
-1.55,
-1.30), (
-0.99,
-0.36)
1392(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.59,
-0.61), (
-0.54,
-0.79)
1393(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.03,
+0.19)
1394(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1395mul
= matmul(mat, inv)
1397(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
-0.00,
+0.00), (
-0.00,
+0.00), (
-0.00,
+0.00)
1398(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1399(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
-0.00,
+0.00)
1400(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1401(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1402(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1408mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1409call setMatInit(mat, lowDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1411(
+1.00,
+0.00), (
+0.00,
+0.61), (
-0.98,
-0.79)
1412(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.81,
-0.82)
1413(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1417(
+1.00,
+0.00), (
-0.00,
-0.61), (
+1.48,
+1.28)
1418(
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.81,
+0.82)
1419(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1420mul
= matmul(mat, inv)
1422(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1423(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1424(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1430mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1431call setMatInit(mat, lowDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1433(
+1.00,
+0.00), (
+0.95,
+0.35), (
+0.29,
-0.86)
1434(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.56,
+0.44)
1435(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1439(
+1.00,
+0.00), (
-0.95,
-0.35), (
+0.09,
+1.48)
1440(
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.56,
-0.44)
1441(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1442mul
= matmul(mat, inv)
1444(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1445(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1446(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1452mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1453call setMatInit(mat, lowDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1455(
+1.00,
+0.00), (
+0.57,
-0.06), (
+0.19,
-0.46), (
-0.61,
+0.89)
1456(
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.16,
+0.94), (
+0.03,
-0.92)
1457(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.99,
+0.60)
1458(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1462(
+1.00,
+0.00), (
-0.57,
+0.06), (
-0.23,
+1.00), (
+0.95,
-0.29)
1463(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.16,
-0.94), (
-0.43,
-0.10)
1464(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.99,
-0.60)
1465(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1466mul
= matmul(mat, inv)
1468(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1469(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1470(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1471(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1477mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1478call setMatInit(mat, lowDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1480(
+1.00,
+0.00), (
-0.14,
+0.06)
1481(
+0.00,
+0.00), (
+1.00,
+0.00)
1485(
+1.00,
+0.00), (
+0.14,
-0.06)
1486(
+0.00,
+0.00), (
+1.00,
+0.00)
1487mul
= matmul(mat, inv)
1489(
+1.00,
+0.00), (
+0.00,
+0.00)
1490(
+0.00,
+0.00), (
+1.00,
+0.00)
1511mul
= matmul(mat, inv)
1528mul
= matmul(mat, inv)
1539 +1.00,
+0.00,
+0.00,
+0.00
1540 +9.00,
+1.00,
+0.00,
+0.00
1541 +5.00,
+1.00,
+1.00,
+0.00
1542 +7.00,
+7.00,
+1.00,
+1.00
1546 +1.00,
+0.00,
+0.00,
+0.00
1547 -9.00,
+1.00,
+0.00,
+0.00
1548 +4.00,
-1.00,
+1.00,
+0.00
1549 +52.00,
-6.00,
-1.00,
+1.00
1550mul
= matmul(mat, inv)
1552 +1.00,
+0.00,
+0.00,
+0.00
1553 +0.00,
+1.00,
+0.00,
+0.00
1554 +0.00,
+0.00,
+1.00,
+0.00
1555 +0.00,
+0.00,
+0.00,
+1.00
1564 +1.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
1565 +1.00,
+1.00,
+0.00,
+0.00,
+0.00,
+0.00
1566 +7.00,
+9.00,
+1.00,
+0.00,
+0.00,
+0.00
1567 +1.00,
+8.00,
+2.00,
+1.00,
+0.00,
+0.00
1568 +9.00,
+5.00,
+8.00,
+5.00,
+1.00,
+0.00
1569 +3.00,
+6.00,
+5.00,
+8.00,
+7.00,
+1.00
1573 +1.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
1574 -1.00,
+1.00,
+0.00,
+0.00,
+0.00,
+0.00
1575 +2.00,
-9.00,
+1.00,
+0.00,
+0.00,
+0.00
1576 +3.00,
+10.00,
-2.00,
+1.00,
+0.00,
+0.00
1577 -35.00,
+17.00,
+2.00,
-5.00,
+1.00,
+0.00
1578 +214.00,
-160.00,
-3.00,
+27.00,
-7.00,
+1.00
1579mul
= matmul(mat, inv)
1581 +1.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
1582 +0.00,
+1.00,
+0.00,
+0.00,
+0.00,
+0.00
1583 +0.00,
+0.00,
+1.00,
+0.00,
+0.00,
+0.00
1584 +0.00,
+0.00,
+0.00,
+1.00,
+0.00,
+0.00
1585 +0.00,
+0.00,
+0.00,
+0.00,
+1.00,
+0.00
1586 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.00
1600mul
= matmul(mat, inv)
1619 +10.00,
-2.00,
+1.00
1620mul
= matmul(mat, inv)
1640mul
= matmul(mat, inv)
1659mul
= matmul(mat, inv)
1671 +1.00,
+0.00,
+0.00,
+0.00,
+0.00
1672 +8.00,
+1.00,
+0.00,
+0.00,
+0.00
1673 +9.00,
+3.00,
+1.00,
+0.00,
+0.00
1674 +5.00,
+5.00,
+1.00,
+1.00,
+0.00
1675 +5.00,
+9.00,
+5.00,
+3.00,
+1.00
1679 +1.00,
+0.00,
+0.00,
+0.00,
+0.00
1680 -8.00,
+1.00,
+0.00,
+0.00,
+0.00
1681 +15.00,
-3.00,
+1.00,
+0.00,
+0.00
1682 +20.00,
-2.00,
-1.00,
+1.00,
+0.00
1683 -68.00,
+12.00,
-2.00,
-3.00,
+1.00
1684mul
= matmul(mat, inv)
1686 +1.00,
+0.00,
+0.00,
+0.00,
+0.00
1687 +0.00,
+1.00,
+0.00,
+0.00,
+0.00
1688 +0.00,
+0.00,
+1.00,
+0.00,
+0.00
1689 +0.00,
+0.00,
+0.00,
+1.00,
+0.00
1690 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
1699 +1.00,
+0.00,
+0.00,
+0.00
1700 +7.00,
+1.00,
+0.00,
+0.00
1701 +1.00,
+1.00,
+1.00,
+0.00
1702 +9.00,
+8.00,
+6.00,
+1.00
1706 +1.00,
+0.00,
+0.00,
+0.00
1707 -7.00,
+1.00,
+0.00,
+0.00
1708 +6.00,
-1.00,
+1.00,
+0.00
1709 +11.00,
-2.00,
-6.00,
+1.00
1710mul
= matmul(mat, inv)
1712 +1.00,
+0.00,
+0.00,
+0.00
1713 +0.00,
+1.00,
+0.00,
+0.00
1714 +0.00,
+0.00,
+1.00,
+0.00
1715 +0.00,
+0.00,
+0.00,
+1.00
1726mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1727call setMatInit(mat, uppDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1729(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1730(
-0.21,
+0.71), (
+1.00,
+0.00), (
+0.00,
+0.00)
1731(
-0.36,
-0.12), (
+0.16,
-0.64), (
+1.00,
+0.00)
1735(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1736(
+0.21,
-0.71), (
+1.00,
+0.00), (
+0.00,
+0.00)
1737(
+0.78,
+0.37), (
-0.16,
+0.64), (
+1.00,
+0.00)
1738mul
= matmul(mat, inv)
1740(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1741(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1742(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1748mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1749call setMatInit(mat, uppDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1751(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1752(
+0.61,
+0.89), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1753(
-0.48,
-0.60), (
-0.17,
+0.57), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1754(
+0.36,
-0.36), (
+0.20,
+0.40), (
-0.89,
-0.65), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1755(
-0.95,
+0.08), (
-0.83,
+0.78), (
+0.81,
-0.56), (
+0.08,
-0.68), (
+1.00,
+0.00), (
+0.00,
+0.00)
1756(
+0.96,
+0.87), (
+0.94,
-0.85), (
+0.91,
+0.99), (
-0.14,
-0.25), (
-0.78,
-0.90), (
+1.00,
+0.00)
1760(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1761(
-0.61,
-0.89), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1762(
-0.13,
+0.79), (
+0.17,
-0.57), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1763(
-1.22,
+1.40), (
+0.33,
-0.80), (
+0.89,
+0.65), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1764(
-1.44,
-2.01), (
+1.52,
+0.07), (
-1.33,
+1.11), (
-0.08,
+0.68), (
+1.00,
+0.00), (
+0.00,
+0.00)
1765(
+1.42,
-4.11), (
-0.28,
+2.58), (
-2.98,
-0.99), (
-0.53,
+0.71), (
+0.78,
+0.90), (
+1.00,
+0.00)
1766mul
= matmul(mat, inv)
1768(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1769(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1770(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1771(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1772(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1773(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1779mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1780call setMatInit(mat, uppDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1782(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1783(
+0.29,
-0.15), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1784(
+0.64,
-0.26), (
+0.08,
+0.12), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1785(
-0.79,
-0.88), (
+0.76,
-0.00), (
-0.20,
-0.74), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1786(
-1.00,
+0.69), (
-0.52,
-0.95), (
+0.47,
+0.32), (
+0.36,
+0.41), (
+1.00,
+0.00), (
+0.00,
+0.00)
1787(
+0.72,
+0.26), (
-0.85,
+0.95), (
+0.90,
-0.79), (
-0.25,
+0.21), (
+0.94,
+0.17), (
+1.00,
+0.00)
1791(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1792(
-0.29,
+0.15), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1793(
-0.60,
+0.28), (
-0.08,
-0.12), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1794(
+0.68,
+0.37), (
-0.69,
-0.08), (
+0.20,
+0.74), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1795(
+0.98,
-1.24), (
+0.73,
+1.34), (
-0.23,
-0.67), (
-0.36,
-0.41), (
+1.00,
+0.00), (
+0.00,
+0.00)
1796(
-1.38,
+0.36), (
+0.37,
-2.16), (
-0.58,
+1.60), (
+0.52,
+0.23), (
-0.94,
-0.17), (
+1.00,
+0.00)
1797mul
= matmul(mat, inv)
1799(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1800(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1801(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1802(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1803(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1804(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1810mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1811call setMatInit(mat, uppDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1813(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1814(
+0.78,
-0.70), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1815(
-0.22,
+0.99), (
+0.59,
-0.91), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1816(
+0.60,
-0.13), (
+0.16,
-0.70), (
-0.81,
-0.91), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1817(
-0.70,
-0.56), (
+0.96,
-0.02), (
+0.48,
-0.70), (
-0.45,
-0.76), (
+1.00,
+0.00), (
+0.00,
+0.00)
1818(
-0.39,
-0.06), (
-0.22,
+0.80), (
+0.12,
+0.45), (
-0.30,
+0.12), (
-0.51,
+0.04), (
+1.00,
+0.00)
1822(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1823(
-0.78,
+0.70), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1824(
+0.05,
-2.11), (
-0.59,
+0.91), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1825(
+0.99,
-2.20), (
-1.47,
+0.90), (
+0.81,
+0.91), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1826(
+5.00,
+0.68), (
-2.65,
-1.54), (
-0.80,
+1.72), (
+0.45,
+0.76), (
+1.00,
+0.00), (
+0.00,
+0.00)
1827(
+2.42,
+0.42), (
-1.04,
-0.86), (
-0.10,
+0.63), (
+0.56,
+0.24), (
+0.51,
-0.04), (
+1.00,
+0.00)
1828mul
= matmul(mat, inv)
1830(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1831(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1832(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1833(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1834(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1835(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1841mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1842call setMatInit(mat, uppDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1844(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1845(
-0.12,
+0.12), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1846(
+0.94,
+0.89), (
+0.48,
+0.60), (
+1.00,
+0.00), (
+0.00,
+0.00)
1847(
+0.11,
+0.42), (
-0.74,
+0.41), (
-0.56,
-0.03), (
+1.00,
+0.00)
1851(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1852(
+0.12,
-0.12), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1853(
-1.06,
-0.91), (
-0.48,
-0.60), (
+1.00,
+0.00), (
+0.00,
+0.00)
1854(
-0.63,
-1.10), (
+0.49,
-0.76), (
+0.56,
+0.03), (
+1.00,
+0.00)
1855mul
= matmul(mat, inv)
1857(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1858(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1859(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1860(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1866mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1867call setMatInit(mat, uppDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1869(
+1.00,
+0.00), (
+0.00,
+0.00)
1870(
+0.91,
+0.64), (
+1.00,
+0.00)
1874(
+1.00,
+0.00), (
+0.00,
+0.00)
1875(
-0.91,
-0.64), (
+1.00,
+0.00)
1876mul
= matmul(mat, inv)
1878(
+1.00,
+0.00), (
+0.00,
+0.00)
1879(
+0.00,
+0.00), (
+1.00,
+0.00)
1885mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1886call setMatInit(mat, uppDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1888(
+1.00,
+0.00), (
+0.00,
+0.00)
1889(
+0.30,
-0.56), (
+1.00,
+0.00)
1893(
+1.00,
+0.00), (
+0.00,
+0.00)
1894(
-0.30,
+0.56), (
+1.00,
+0.00)
1895mul
= matmul(mat, inv)
1897(
+1.00,
+0.00), (
+0.00,
+0.00)
1898(
+0.00,
+0.00), (
+1.00,
+0.00)
1904mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1905call setMatInit(mat, uppDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1907(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1908(
+0.32,
+0.14), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1909(
-0.94,
-0.91), (
+0.83,
+0.01), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1910(
-0.11,
+0.88), (
-0.74,
+0.04), (
-0.62,
-0.48), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1911(
-0.65,
-0.75), (
+0.33,
-0.89), (
-0.45,
-0.23), (
-0.87,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1912(
-0.80,
-0.63), (
-0.46,
+0.00), (
-0.74,
-0.93), (
+0.82,
+0.77), (
+0.35,
+0.45), (
+1.00,
+0.00)
1916(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1917(
-0.32,
-0.14), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1918(
+1.21,
+1.03), (
-0.83,
-0.01), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1919(
+0.12,
+0.25), (
+0.23,
-0.45), (
+0.62,
+0.48), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1920(
+1.29,
+1.47), (
-0.50,
+0.30), (
+0.99,
+0.65), (
+0.87,
-0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1921(
+0.91,
+1.05), (
-0.37,
-0.46), (
+0.55,
-0.62), (
-1.13,
-1.17), (
-0.35,
-0.45), (
+1.00,
+0.00)
1922mul
= matmul(mat, inv)
1924(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1925(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1926(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1927(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1928(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1929(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1935mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1936call setMatInit(mat, uppDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1938(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1939(
-0.68,
-0.06), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1940(
+0.74,
-0.97), (
+0.95,
+0.04), (
+1.00,
+0.00), (
+0.00,
+0.00)
1941(
-0.67,
-0.75), (
-0.39,
+0.95), (
-0.86,
-0.36), (
+1.00,
+0.00)
1945(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1946(
+0.68,
+0.06), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1947(
-1.38,
+0.89), (
-0.95,
-0.04), (
+1.00,
+0.00), (
+0.00,
+0.00)
1948(
-0.52,
+0.41), (
-0.42,
-1.33), (
+0.86,
+0.36), (
+1.00,
+0.00)
1949mul
= matmul(mat, inv)
1951(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1952(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1953(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1954(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1960mat
= getUnifRand((
-1.,
-1.), (
+1.,
+1.), ndim, ndim)
1961call setMatInit(mat, uppDia, (
0._TKG,
0._TKG), (
1._TKG,
0._TKG))
1963(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1964(
-0.03,
+0.20), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1965(
-0.16,
+0.46), (
-0.64,
-0.89), (
+1.00,
+0.00), (
+0.00,
+0.00)
1966(
+0.86,
-0.34), (
+0.97,
+0.61), (
-0.32,
-0.44), (
+1.00,
+0.00)
1970(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1971(
+0.03,
-0.20), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1972(
+0.35,
-0.57), (
+0.64,
+0.89), (
+1.00,
+0.00), (
+0.00,
+0.00)
1973(
-0.65,
+0.49), (
-1.16,
-0.04), (
+0.32,
+0.44), (
+1.00,
+0.00)
1974mul
= matmul(mat, inv)
1976(
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1977(
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
1978(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
+0.00,
+0.00)
1979(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
1987mat
= reshape([
1,
0,
2,
-1,
5,
0,
0,
3,
-9], shape
= [
3,
3], order
= [
2,
1])
1999if (info
/= 0)
error stop 'LUP factorization failed.'
2003 +0.00,
+0.60,
-10.20
2010mul
= matmul(mat, inv)
2017mat
= reshape([
1,
0,
2,
-1,
5,
0,
0,
3,
-9], shape
= [
3,
3], order
= [
2,
1])
2029if (info
/= 0)
error stop 'LUP factorization failed.'
2033 +0.00,
+0.60,
-10.20
2040mul
= matmul(mat, inv)
2047mat
= reshape([
1,
0,
2,
-1,
5,
0,
0,
3,
-9], shape
= [
3,
3], order
= [
2,
1])
2059if (info
/= 0)
error stop 'LUP factorization failed.'
2063 +0.00,
+0.60,
-10.20
2070mul
= matmul(mat, inv)
2077mat
= reshape([
1,
0,
2,
-1,
5,
0,
0,
3,
-9], shape
= [
3,
3], order
= [
2,
1])
2089if (info
/= 0)
error stop 'LUP factorization failed.'
2093 +0.00,
+0.60,
-10.20
2100mul
= matmul(mat, inv)
2107mat
= reshape([
1,
0,
2,
-1,
5,
0,
0,
3,
-9], shape
= [
3,
3], order
= [
2,
1])
2119if (info
/= 0)
error stop 'LUP factorization failed.'
2123 +0.00,
+0.60,
-10.20
2130mul
= matmul(mat, inv)
2137mat
= reshape([
1,
0,
2,
-1,
5,
0,
0,
3,
-9], shape
= [
3,
3], order
= [
2,
1])
2149if (info
/= 0)
error stop 'LUP factorization failed.'
2153 +0.00,
+0.60,
-10.20
2160mul
= matmul(mat, inv)
2167mat
= reshape([
1,
0,
2,
-1,
5,
0,
0,
3,
-9], shape
= [
3,
3], order
= [
2,
1])
2179if (info
/= 0)
error stop 'LUP factorization failed.'
2183 +0.00,
+0.60,
-10.20
2190mul
= matmul(mat, inv)
2197mat
= reshape([
1,
0,
2,
-1,
5,
0,
0,
3,
-9], shape
= [
3,
3], order
= [
2,
1])
2209if (info
/= 0)
error stop 'LUP factorization failed.'
2213 +0.00,
+0.60,
-10.20
2220mul
= matmul(mat, inv)
2227mat
= reshape([
1,
0,
2,
-1,
5,
0,
0,
3,
-9], shape
= [
3,
3], order
= [
2,
1])
2239if (info
/= 0)
error stop 'LUP factorization failed.'
2243 +0.00,
+0.60,
-10.20
2250mul
= matmul(mat, inv)
2257mat
= reshape([
1,
0,
2,
-1,
5,
0,
0,
3,
-9], shape
= [
3,
3], order
= [
2,
1])
2269if (info
/= 0)
error stop 'LUP factorization failed.'
2273 +0.00,
+0.60,
-10.20
2280mul
= matmul(mat, inv)
2295(
+2.00,
+1.00), (
+2.40,
-1.00), (
+2.80,
-1.00), (
+3.20,
-1.00), (
+3.60,
-1.00), (
+4.00,
-1.00), (
+4.40,
-1.00), (
+4.80,
-1.00), (
+5.20,
-1.00)
2296(
+2.40,
+1.00), (
+2.00,
+1.00), (
+2.40,
-1.00), (
+2.80,
-1.00), (
+3.20,
-1.00), (
+3.60,
-1.00), (
+4.00,
-1.00), (
+4.40,
-1.00), (
+4.80,
-1.00)
2297(
+2.80,
+1.00), (
+2.40,
+1.00), (
+2.00,
+1.00), (
+2.40,
-1.00), (
+2.80,
-1.00), (
+3.20,
-1.00), (
+3.60,
-1.00), (
+4.00,
-1.00), (
+4.40,
-1.00)
2298(
+3.20,
+1.00), (
+2.80,
+1.00), (
+2.40,
+1.00), (
+2.00,
+1.00), (
+2.40,
-1.00), (
+2.80,
-1.00), (
+3.20,
-1.00), (
+3.60,
-1.00), (
+4.00,
-1.00)
2299(
+3.60,
+1.00), (
+3.20,
+1.00), (
+2.80,
+1.00), (
+2.40,
+1.00), (
+2.00,
+1.00), (
+2.40,
-1.00), (
+2.80,
-1.00), (
+3.20,
-1.00), (
+3.60,
-1.00)
2300(
+4.00,
+1.00), (
+3.60,
+1.00), (
+3.20,
+1.00), (
+2.80,
+1.00), (
+2.40,
+1.00), (
+2.00,
+1.00), (
+2.40,
-1.00), (
+2.80,
-1.00), (
+3.20,
-1.00)
2301(
+4.40,
+1.00), (
+4.00,
+1.00), (
+3.60,
+1.00), (
+3.20,
+1.00), (
+2.80,
+1.00), (
+2.40,
+1.00), (
+2.00,
+1.00), (
+2.40,
-1.00), (
+2.80,
-1.00)
2302(
+4.80,
+1.00), (
+4.40,
+1.00), (
+4.00,
+1.00), (
+3.60,
+1.00), (
+3.20,
+1.00), (
+2.80,
+1.00), (
+2.40,
+1.00), (
+2.00,
+1.00), (
+2.40,
-1.00)
2303(
+5.20,
+1.00), (
+4.80,
+1.00), (
+4.40,
+1.00), (
+4.00,
+1.00), (
+3.60,
+1.00), (
+3.20,
+1.00), (
+2.80,
+1.00), (
+2.40,
+1.00), (
+2.00,
+1.00)
2305if (info
/= 0)
error stop 'LUP factorization failed.'
2307(
+5.20,
+1.00), (
+4.80,
+1.00), (
+4.40,
+1.00), (
+4.00,
+1.00), (
+3.60,
+1.00), (
+3.20,
+1.00), (
+2.80,
+1.00), (
+2.40,
+1.00), (
+2.00,
+1.00)
2308(
+0.41,
+0.11), (
+0.56,
-1.95), (
+1.13,
-1.91), (
+1.69,
-1.86), (
+2.25,
-1.82), (
+2.81,
-1.77), (
+3.38,
-1.73), (
+3.94,
-1.68), (
+4.50,
-1.63)
2309(
+0.48,
+0.10), (
-0.05,
-0.09), (
+0.61,
-1.91), (
+1.23,
-1.81), (
+1.84,
-1.72), (
+2.46,
-1.62), (
+3.07,
-1.53), (
+3.69,
-1.43), (
+4.30,
-1.34)
2310(
+0.55,
+0.09), (
-0.04,
-0.08), (
-0.06,
-0.06), (
+0.67,
-1.87), (
+1.35,
-1.75), (
+2.02,
-1.62), (
+2.69,
-1.50), (
+3.37,
-1.37), (
+4.04,
-1.25)
2311(
+0.63,
+0.07), (
-0.03,
-0.07), (
-0.05,
-0.05), (
-0.07,
-0.03), (
+0.74,
-1.87), (
+1.47,
-1.73), (
+2.21,
-1.60), (
+2.94,
-1.46), (
+3.68,
-1.33)
2312(
+0.70,
+0.06), (
-0.03,
-0.05), (
-0.04,
-0.04), (
-0.05,
-0.03), (
-0.06,
-0.00), (
+0.79,
-1.88), (
+1.58,
-1.76), (
+2.38,
-1.64), (
+3.17,
-1.53)
2313(
+0.78,
+0.04), (
-0.02,
-0.04), (
-0.03,
-0.03), (
-0.04,
-0.02), (
-0.04,
-0.00), (
-0.04,
+0.01), (
+0.83,
-1.92), (
+1.66,
-1.83), (
+2.49,
-1.75)
2314(
+0.85,
+0.03), (
-0.01,
-0.03), (
-0.02,
-0.02), (
-0.03,
-0.01), (
-0.03,
-0.00), (
-0.03,
+0.01), (
-0.02,
+0.02), (
+0.84,
-1.96), (
+1.68,
-1.92)
2315(
+0.93,
+0.01), (
-0.01,
-0.01), (
-0.01,
-0.01), (
-0.01,
-0.01), (
-0.01,
-0.00), (
-0.01,
+0.00), (
-0.01,
+0.01), (
-0.01,
+0.01), (
+0.82,
-1.99)
2318(
-0.17,
-0.42), (
-0.12,
+0.13), (
-0.06,
+0.15), (
+0.00,
+0.15), (
+0.05,
+0.13), (
+0.09,
+0.09), (
+0.11,
+0.05), (
+0.11,
+0.00), (
+0.04,
-0.28)
2319(
+0.18,
+0.43), (
-0.04,
-0.55), (
-0.06,
-0.03), (
-0.06,
-0.01), (
-0.05,
+0.01), (
-0.04,
+0.03), (
-0.03,
+0.04), (
-0.01,
+0.04), (
+0.11,
+0.00)
2320(
+0.01,
+0.00), (
+0.18,
+0.43), (
-0.04,
-0.55), (
-0.06,
-0.03), (
-0.06,
-0.01), (
-0.05,
+0.01), (
-0.04,
+0.03), (
-0.03,
+0.04), (
+0.11,
+0.05)
2321(
+0.01,
+0.00), (
+0.01,
+0.00), (
+0.18,
+0.43), (
-0.04,
-0.55), (
-0.06,
-0.03), (
-0.06,
-0.01), (
-0.05,
+0.01), (
-0.04,
+0.03), (
+0.09,
+0.09)
2322(
+0.00,
+0.01), (
+0.01,
+0.00), (
+0.01,
+0.00), (
+0.18,
+0.43), (
-0.04,
-0.55), (
-0.06,
-0.03), (
-0.06,
-0.01), (
-0.05,
+0.01), (
+0.05,
+0.13)
2323(
+0.00,
+0.01), (
+0.00,
+0.01), (
+0.01,
+0.00), (
+0.01,
+0.00), (
+0.18,
+0.43), (
-0.04,
-0.55), (
-0.06,
-0.03), (
-0.06,
-0.01), (
+0.00,
+0.15)
2324(
+0.00,
+0.01), (
+0.00,
+0.01), (
+0.00,
+0.01), (
+0.01,
+0.00), (
+0.01,
+0.00), (
+0.18,
+0.43), (
-0.04,
-0.55), (
-0.06,
-0.03), (
-0.06,
+0.15)
2325(
-0.00,
+0.01), (
+0.00,
+0.01), (
+0.00,
+0.01), (
+0.00,
+0.01), (
+0.01,
+0.00), (
+0.01,
+0.00), (
+0.18,
+0.43), (
-0.04,
-0.55), (
-0.12,
+0.13)
2326(
-0.01,
+0.01), (
-0.00,
+0.01), (
+0.00,
+0.01), (
+0.00,
+0.01), (
+0.00,
+0.01), (
+0.01,
+0.00), (
+0.01,
+0.00), (
+0.18,
+0.43), (
-0.17,
-0.42)
2327mul
= matmul(mat, inv)
2329(
+1.00,
+0.00), (
+0.00,
+0.00), (
-0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
-0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00)
2330(
-0.00,
+0.00), (
+1.00,
+0.00), (
-0.00,
+0.00), (
+0.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
+0.00), (
-0.00,
+0.00), (
-0.00,
+0.00), (
-0.00,
+0.00)
2331(
-0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
-0.00), (
-0.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
2332(
-0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
-0.00), (
+1.00,
-0.00), (
-0.00,
-0.00), (
-0.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
+0.00), (
-0.00,
+0.00)
2333(
-0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
-0.00), (
+1.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
-0.00,
+0.00)
2334(
-0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
+1.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
2335(
+0.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
-0.00), (
+0.00,
-0.00), (
+0.00,
-0.00), (
-0.00,
+0.00), (
+1.00,
+0.00), (
-0.00,
+0.00), (
+0.00,
+0.00)
2336(
-0.00,
+0.00), (
+0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
-0.00), (
-0.00,
-0.00), (
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
2337(
-0.00,
-0.00), (
-0.00,
+0.00), (
-0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
+0.00), (
-0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
2355call setMatInv(inv, chol, auxil
= choLow)
2358mul
= matmul(mat, inv)
2377call setMatInv(inv, chol, auxil
= choLow)
2382mul
= matmul(mat, inv)
2401call setMatInv(inv, chol, auxil
= choLow)
2405mul
= matmul(mat, inv)
2421call setMatInv(inv, chol, auxil
= choLow)
2424mul
= matmul(mat, inv)
2434 +1.00,
-0.92,
+0.66,
-0.27
2435 -0.92,
+1.00,
-0.47,
+0.55
2436 +0.66,
-0.47,
+1.00,
-0.12
2437 -0.27,
+0.55,
-0.12,
+1.00
2440 +1.00,
+0.00,
+0.00,
+0.00
2441 -0.92,
+0.39,
+0.00,
+0.00
2442 +0.66,
+0.36,
+0.66,
+0.00
2443 -0.27,
+0.77,
-0.33,
+0.47
2445call setMatInv(inv, chol, auxil
= choLow)
2447 +36.12,
+35.05,
-8.61,
-10.46
2448 +35.05,
+35.88,
-7.59,
-11.09
2449 -8.61,
-7.59,
+3.38,
+2.23
2450 -10.46,
-11.09,
+2.23,
+4.52
2451mul
= matmul(mat, inv)
2453 +1.00,
+0.00,
-0.00,
+0.00
2454 +0.00,
+1.00,
+0.00,
-0.00
2455 -0.00,
+0.00,
+1.00,
+0.00
2456 +0.00,
-0.00,
+0.00,
+1.00
2464 +1.00,
+0.45,
+0.89,
+0.35
2465 +0.45,
+1.00,
+0.81,
+0.94
2466 +0.89,
+0.81,
+1.00,
+0.71
2467 +0.35,
+0.94,
+0.71,
+1.00
2470 +1.00,
+0.00,
+0.00,
+0.00
2471 +0.45,
+0.89,
+0.00,
+0.00
2472 +0.89,
+0.46,
+0.02,
+0.00
2473 +0.35,
+0.88,
+0.00,
+0.32
2475call setMatInv(inv, chol, auxil
= choLow)
2477 +724.18,
+557.54,
-1096.39,
+1.39
2478 +557.54,
+442.71,
-847.85,
-8.94
2479 -1096.39,
-847.85,
+1662.98,
-0.77
2480 +1.39,
-8.94,
-0.77,
+9.48
2481mul
= matmul(mat, inv)
2483 +1.00,
-0.00,
+0.00,
+0.00
2484 +0.00,
+1.00,
+0.00,
+0.00
2485 -0.00,
-0.00,
+1.00,
+0.00
2486 +0.00,
+0.00,
-0.00,
+1.00
2499call setMatInv(inv, chol, auxil
= choLow)
2502mul
= matmul(mat, inv)
2519call setMatInv(inv, chol, auxil
= choLow)
2523mul
= matmul(mat, inv)
2543call setMatInv(inv, chol, auxil
= choLow)
2548mul
= matmul(mat, inv)
2560 +1.00,
+0.39,
+0.73,
-0.50
2561 +0.39,
+1.00,
+0.16,
-0.64
2562 +0.73,
+0.16,
+1.00,
-0.12
2563 -0.50,
-0.64,
-0.12,
+1.00
2566 +1.00,
+0.00,
+0.00,
+0.00
2567 +0.39,
+0.92,
+0.00,
+0.00
2568 +0.73,
-0.14,
+0.67,
+0.00
2569 -0.50,
-0.48,
+0.27,
+0.67
2571call setMatInv(inv, chol, auxil
= choLow)
2573 +3.40,
-0.11,
-2.30,
+1.36
2574 -0.11,
+1.72,
-0.07,
+1.04
2575 -2.30,
-0.07,
+2.58,
-0.90
2576 +1.36,
+1.04,
-0.90,
+2.24
2577mul
= matmul(mat, inv)
2579 +1.00,
+0.00,
+0.00,
+0.00
2580 +0.00,
+1.00,
+0.00,
+0.00
2581 +0.00,
-0.00,
+1.00,
+0.00
2582 +0.00,
+0.00,
+0.00,
+1.00
2591(
+9.00,
+0.00), (
+3.00,
+3.00), (
+3.00,
-3.00)
2592(
+3.00,
-3.00), (
+18.00,
+0.00), (
+8.00,
-6.00)
2593(
+3.00,
+3.00), (
+8.00,
+6.00), (
+43.00,
+0.00)
2596(
+3.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
2597(
+1.00,
-1.00), (
+4.00,
+0.00), (
+0.00,
+0.00)
2598(
+1.00,
+1.00), (
+2.00,
+1.00), (
+6.00,
+0.00)
2600call setMatInv(inv, chol, auxil
= choLow)
2602(
+0.13,
-0.00), (
-0.02,
-0.03), (
-0.00,
+0.01)
2603(
-0.02,
+0.03), (
+0.07,
-0.00), (
-0.01,
+0.01)
2604(
-0.00,
-0.01), (
-0.01,
-0.01), (
+0.03,
-0.00)
2605mul
= matmul(mat, inv)
2607(
+1.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
-0.00)
2608(
+0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
2609(
+0.00,
+0.00), (
-0.00,
-0.00), (
+1.00,
-0.00)
2613(
+9.00,
+0.00), (
+3.00,
+3.00), (
+3.00,
-3.00)
2614(
+3.00,
-3.00), (
+18.00,
+0.00), (
+8.00,
-6.00)
2615(
+3.00,
+3.00), (
+8.00,
+6.00), (
+43.00,
+0.00)
2618(
+3.00,
+0.00), (
+1.00,
+1.00), (
+1.00,
-1.00)
2619(
+0.00,
+0.00), (
+4.00,
+0.00), (
+2.00,
-1.00)
2620(
+0.00,
+0.00), (
+0.00,
+0.00), (
+6.00,
+0.00)
2622call setMatInv(inv, chol, auxil
= choUpp)
2624(
+0.13,
-0.00), (
-0.02,
-0.03), (
-0.00,
+0.01)
2625(
-0.02,
+0.03), (
+0.07,
-0.00), (
-0.01,
+0.01)
2626(
-0.00,
-0.01), (
-0.01,
-0.01), (
+0.03,
-0.00)
2627mul
= matmul(mat, inv)
2629(
+1.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
-0.00)
2630(
+0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
2631(
+0.00,
+0.00), (
-0.00,
-0.00), (
+1.00,
-0.00)
2644 +1.00,
+1.00,
+0.10,
-0.26,
-0.53,
-0.18
2645 +1.00,
+1.00,
+0.13,
-0.27,
-0.55,
-0.19
2646 +0.10,
+0.13,
+1.00,
-0.46,
-0.65,
-0.23
2647 -0.26,
-0.27,
-0.46,
+1.00,
-0.07,
+0.44
2648 -0.53,
-0.55,
-0.65,
-0.07,
+1.00,
-0.07
2649 -0.18,
-0.19,
-0.23,
+0.44,
-0.07,
+1.00
2652 +1.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
2653 +1.00,
+0.03,
+0.00,
+0.00,
+0.00,
+0.00
2654 +0.10,
+0.91,
+0.40,
+0.00,
+0.00,
+0.00
2655 -0.26,
-0.22,
-0.59,
+0.73,
+0.00,
+0.00
2656 -0.53,
-0.59,
-0.15,
-0.58,
+0.13,
+0.00
2657 -0.18,
-0.23,
+0.00,
+0.47,
-0.20,
+0.81
2661call setMatInv(inv, chol, auxil
= choLow, subset
= uppDia)
2663 +35646.79,
-34981.50,
+2155.17,
+1020.72,
+1205.54,
+2.46
2664 +0.00,
+34336.34,
-2105.59,
-995.21,
-1172.19,
-0.95
2665 +0.00,
+0.00,
+144.82,
+71.08,
+88.21,
+2.12
2666 +0.00,
+0.00,
+0.00,
+36.62,
+44.70,
+0.85
2667 +0.00,
+0.00,
+0.00,
+0.00,
+58.51,
+2.33
2668 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+1.53
2669call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
2671 +35646.79,
-34981.50,
+2155.17,
+1020.72,
+1205.54,
+2.46
2672 -34981.50,
+34336.34,
-2105.59,
-995.21,
-1172.19,
-0.95
2673 +2155.17,
-2105.59,
+144.82,
+71.08,
+88.21,
+2.12
2674 +1020.72,
-995.21,
+71.08,
+36.62,
+44.70,
+0.85
2675 +1205.54,
-1172.19,
+88.21,
+44.70,
+58.51,
+2.33
2676 +2.46,
-0.95,
+2.12,
+0.85,
+2.33,
+1.53
2677mul
= matmul(mat, inv)
2679 +1.01,
-0.01,
+0.00,
+0.00,
+0.00,
+0.00
2680 +0.01,
+0.99,
+0.00,
+0.00,
+0.00,
+0.00
2681 +0.00,
-0.00,
+1.00,
+0.00,
+0.00,
+0.00
2682 -0.00,
+0.00,
-0.00,
+1.00,
-0.00,
-0.00
2683 -0.01,
+0.00,
-0.00,
-0.00,
+1.00,
-0.00
2684 -0.00,
+0.00,
-0.00,
-0.00,
-0.00,
+1.00
2687call setMatInv(inv, chol, auxil
= choLow, subset
= lowDia)
2689 +35646.79,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
2690 -34981.50,
+34336.34,
+0.00,
+0.00,
+0.00,
+0.00
2691 +2155.17,
-2105.59,
+144.82,
+0.00,
+0.00,
+0.00
2692 +1020.72,
-995.21,
+71.08,
+36.62,
+0.00,
+0.00
2693 +1205.54,
-1172.19,
+88.21,
+44.70,
+58.51,
+0.00
2694 +2.46,
-0.95,
+2.12,
+0.85,
+2.33,
+1.53
2695call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
2697 +35646.79,
-34981.50,
+2155.17,
+1020.72,
+1205.54,
+2.46
2698 -34981.50,
+34336.34,
-2105.59,
-995.21,
-1172.19,
-0.95
2699 +2155.17,
-2105.59,
+144.82,
+71.08,
+88.21,
+2.12
2700 +1020.72,
-995.21,
+71.08,
+36.62,
+44.70,
+0.85
2701 +1205.54,
-1172.19,
+88.21,
+44.70,
+58.51,
+2.33
2702 +2.46,
-0.95,
+2.12,
+0.85,
+2.33,
+1.53
2703mul
= matmul(mat, inv)
2705 +1.01,
-0.01,
+0.00,
+0.00,
+0.00,
+0.00
2706 +0.01,
+0.99,
+0.00,
+0.00,
+0.00,
+0.00
2707 +0.00,
-0.00,
+1.00,
+0.00,
+0.00,
+0.00
2708 -0.00,
+0.00,
-0.00,
+1.00,
-0.00,
-0.00
2709 -0.01,
+0.00,
-0.00,
-0.00,
+1.00,
-0.00
2710 -0.00,
+0.00,
-0.00,
-0.00,
-0.00,
+1.00
2718 +1.00,
+0.37,
-0.98,
+0.76,
+0.52,
+0.13
2719 +0.37,
+1.00,
-0.55,
+0.74,
+0.49,
+0.00
2720 -0.98,
-0.55,
+1.00,
-0.84,
-0.56,
-0.12
2721 +0.76,
+0.74,
-0.84,
+1.00,
+0.81,
-0.34
2722 +0.52,
+0.49,
-0.56,
+0.81,
+1.00,
-0.57
2723 +0.13,
+0.00,
-0.12,
-0.34,
-0.57,
+1.00
2726 +1.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
2727 +0.37,
+0.93,
+0.00,
+0.00,
+0.00,
+0.00
2728 -0.98,
-0.20,
+0.03,
+0.00,
+0.00,
+0.00
2729 +0.76,
+0.49,
+0.20,
+0.38,
+0.00,
+0.00
2730 +0.52,
+0.32,
+0.43,
+0.46,
+0.49,
+0.00
2731 +0.13,
-0.05,
-0.35,
-0.92,
-0.10,
+0.01
2735call setMatInv(inv, chol, auxil
= choLow, subset
= uppDia)
2737 +287897.06,
+102052.43,
+254034.48,
-88731.81,
-8225.84,
-40146.20
2738 +0.00,
+36197.50,
+90009.83,
-31510.19,
-2917.05,
-14255.86
2739 +0.00,
+0.00,
+224232.41,
-78187.09,
-7255.48,
-35375.99
2740 +0.00,
+0.00,
+0.00,
+27503.44,
+2536.27,
+12440.58
2741 +0.00,
+0.00,
+0.00,
+0.00,
+239.09,
+1150.07
2742 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+5629.94
2743call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
2745 +287897.06,
+102052.43,
+254034.48,
-88731.81,
-8225.84,
-40146.20
2746 +102052.43,
+36197.50,
+90009.83,
-31510.19,
-2917.05,
-14255.86
2747 +254034.48,
+90009.83,
+224232.41,
-78187.09,
-7255.48,
-35375.99
2748 -88731.81,
-31510.19,
-78187.09,
+27503.44,
+2536.27,
+12440.58
2749 -8225.84,
-2917.05,
-7255.48,
+2536.27,
+239.09,
+1150.07
2750 -40146.20,
-14255.86,
-35375.99,
+12440.58,
+1150.07,
+5629.94
2751mul
= matmul(mat, inv)
2753 +1.00,
-0.01,
+0.00,
+0.01,
+0.00,
+0.01
2754 -0.01,
+1.00,
-0.01,
+0.00,
+0.00,
+0.00
2755 +0.01,
-0.00,
+1.02,
-0.01,
-0.00,
-0.01
2756 -0.00,
-0.01,
+0.01,
+1.01,
+0.00,
+0.00
2757 -0.00,
+0.00,
-0.00,
+0.00,
+1.00,
-0.00
2758 -0.00,
-0.00,
-0.00,
+0.00,
+0.00,
+1.00
2761call setMatInv(inv, chol, auxil
= choLow, subset
= lowDia)
2763 +287897.06,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
2764 +102052.43,
+36197.50,
+0.00,
+0.00,
+0.00,
+0.00
2765 +254034.48,
+90009.83,
+224232.41,
+0.00,
+0.00,
+0.00
2766 -88731.81,
-31510.19,
-78187.09,
+27503.44,
+0.00,
+0.00
2767 -8225.84,
-2917.05,
-7255.48,
+2536.27,
+239.09,
+0.00
2768 -40146.20,
-14255.86,
-35375.99,
+12440.58,
+1150.07,
+5629.94
2769call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
2771 +287897.06,
+102052.43,
+254034.48,
-88731.81,
-8225.84,
-40146.20
2772 +102052.43,
+36197.50,
+90009.83,
-31510.19,
-2917.05,
-14255.86
2773 +254034.48,
+90009.83,
+224232.41,
-78187.09,
-7255.48,
-35375.99
2774 -88731.81,
-31510.19,
-78187.09,
+27503.44,
+2536.27,
+12440.58
2775 -8225.84,
-2917.05,
-7255.48,
+2536.27,
+239.09,
+1150.07
2776 -40146.20,
-14255.86,
-35375.99,
+12440.58,
+1150.07,
+5629.94
2777mul
= matmul(mat, inv)
2779 +1.00,
-0.01,
+0.00,
+0.01,
+0.00,
+0.01
2780 -0.01,
+1.00,
-0.01,
+0.00,
+0.00,
+0.00
2781 +0.01,
-0.00,
+1.02,
-0.01,
-0.00,
-0.01
2782 -0.00,
-0.01,
+0.01,
+1.01,
+0.00,
+0.00
2783 -0.00,
+0.00,
-0.00,
+0.00,
+1.00,
-0.00
2784 -0.00,
-0.00,
-0.00,
+0.00,
+0.00,
+1.00
2792 +1.00,
-0.61,
-0.18,
+0.44
2793 -0.61,
+1.00,
+0.44,
-0.91
2794 -0.18,
+0.44,
+1.00,
-0.19
2795 +0.44,
-0.91,
-0.19,
+1.00
2798 +1.00,
+0.00,
+0.00,
+0.00
2799 -0.61,
+0.79,
+0.00,
+0.00
2800 -0.18,
+0.42,
+0.89,
+0.00
2801 +0.44,
-0.81,
+0.26,
+0.29
2805call setMatInv(inv, chol, auxil
= choLow, subset
= uppDia)
2807 +2.26,
+4.34,
-0.99,
+2.76
2808 +0.00,
+18.87,
-4.88,
+14.33
2809 +0.00,
+0.00,
+2.31,
-3.56
2810 +0.00,
+0.00,
+0.00,
+12.15
2811call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
2813 +2.26,
+4.34,
-0.99,
+2.76
2814 +4.34,
+18.87,
-4.88,
+14.33
2815 -0.99,
-4.88,
+2.31,
-3.56
2816 +2.76,
+14.33,
-3.56,
+12.15
2817mul
= matmul(mat, inv)
2819 +1.00,
-0.00,
-0.00,
+0.00
2820 -0.00,
+1.00,
+0.00,
-0.00
2821 -0.00,
-0.00,
+1.00,
-0.00
2822 -0.00,
-0.00,
-0.00,
+1.00
2825call setMatInv(inv, chol, auxil
= choLow, subset
= lowDia)
2827 +2.26,
+0.00,
+0.00,
+0.00
2828 +4.34,
+18.87,
+0.00,
+0.00
2829 -0.99,
-4.88,
+2.31,
+0.00
2830 +2.76,
+14.33,
-3.56,
+12.15
2831call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
2833 +2.26,
+4.34,
-0.99,
+2.76
2834 +4.34,
+18.87,
-4.88,
+14.33
2835 -0.99,
-4.88,
+2.31,
-3.56
2836 +2.76,
+14.33,
-3.56,
+12.15
2837mul
= matmul(mat, inv)
2839 +1.00,
-0.00,
-0.00,
+0.00
2840 -0.00,
+1.00,
+0.00,
-0.00
2841 -0.00,
-0.00,
+1.00,
-0.00
2842 -0.00,
-0.00,
-0.00,
+1.00
2850 +1.00,
+0.24,
+0.57,
+0.75,
-0.08,
-0.22
2851 +0.24,
+1.00,
+0.80,
-0.42,
+0.21,
-0.07
2852 +0.57,
+0.80,
+1.00,
-0.02,
+0.42,
-0.15
2853 +0.75,
-0.42,
-0.02,
+1.00,
-0.15,
-0.02
2854 -0.08,
+0.21,
+0.42,
-0.15,
+1.00,
-0.23
2855 -0.22,
-0.07,
-0.15,
-0.02,
-0.23,
+1.00
2858 +1.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
2859 +0.24,
+0.97,
+0.00,
+0.00,
+0.00,
+0.00
2860 +0.57,
+0.68,
+0.47,
+0.00,
+0.00,
+0.00
2861 +0.75,
-0.62,
-0.06,
+0.24,
+0.00,
+0.00
2862 -0.08,
+0.24,
+0.66,
+0.42,
+0.57,
+0.00
2863 -0.22,
-0.02,
-0.04,
+0.56,
-0.79,
+0.07
2867call setMatInv(inv, chol, auxil
= choLow, subset
= uppDia)
2869 +6548.41,
-1875.30,
-2852.34,
-5482.83,
+1571.21,
+1131.91
2870 +0.00,
+543.08,
+811.51,
+1572.74,
-448.60,
-324.18
2871 +0.00,
+0.00,
+1248.35,
+2385.86,
-686.09,
-492.94
2872 +0.00,
+0.00,
+0.00,
+4592.80,
-1314.77,
-947.68
2873 +0.00,
+0.00,
+0.00,
+0.00,
+378.60,
+271.81
2874 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+196.72
2875call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
2877 +6548.41,
-1875.30,
-2852.34,
-5482.83,
+1571.21,
+1131.91
2878 -1875.30,
+543.08,
+811.51,
+1572.74,
-448.60,
-324.18
2879 -2852.34,
+811.51,
+1248.35,
+2385.86,
-686.09,
-492.94
2880 -5482.83,
+1572.74,
+2385.86,
+4592.80,
-1314.77,
-947.68
2881 +1571.21,
-448.60,
-686.09,
-1314.77,
+378.60,
+271.81
2882 +1131.91,
-324.18,
-492.94,
-947.68,
+271.81,
+196.72
2883mul
= matmul(mat, inv)
2885 +1.00,
-0.00,
-0.00,
-0.00,
+0.00,
+0.00
2886 +0.00,
+1.00,
-0.00,
-0.00,
+0.00,
+0.00
2887 +0.00,
-0.00,
+1.00,
-0.00,
+0.00,
+0.00
2888 +0.00,
-0.00,
-0.00,
+1.00,
+0.00,
+0.00
2889 +0.00,
-0.00,
-0.00,
-0.00,
+1.00,
+0.00
2890 -0.00,
+0.00,
+0.00,
+0.00,
-0.00,
+1.00
2893call setMatInv(inv, chol, auxil
= choLow, subset
= lowDia)
2895 +6548.41,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
2896 -1875.30,
+543.08,
+0.00,
+0.00,
+0.00,
+0.00
2897 -2852.34,
+811.51,
+1248.35,
+0.00,
+0.00,
+0.00
2898 -5482.83,
+1572.74,
+2385.86,
+4592.80,
+0.00,
+0.00
2899 +1571.21,
-448.60,
-686.09,
-1314.77,
+378.60,
+0.00
2900 +1131.91,
-324.18,
-492.94,
-947.68,
+271.81,
+196.72
2901call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
2903 +6548.41,
-1875.30,
-2852.34,
-5482.83,
+1571.21,
+1131.91
2904 -1875.30,
+543.08,
+811.51,
+1572.74,
-448.60,
-324.18
2905 -2852.34,
+811.51,
+1248.35,
+2385.86,
-686.09,
-492.94
2906 -5482.83,
+1572.74,
+2385.86,
+4592.80,
-1314.77,
-947.68
2907 +1571.21,
-448.60,
-686.09,
-1314.77,
+378.60,
+271.81
2908 +1131.91,
-324.18,
-492.94,
-947.68,
+271.81,
+196.72
2909mul
= matmul(mat, inv)
2911 +1.00,
-0.00,
-0.00,
-0.00,
+0.00,
+0.00
2912 +0.00,
+1.00,
-0.00,
-0.00,
+0.00,
+0.00
2913 +0.00,
-0.00,
+1.00,
-0.00,
+0.00,
+0.00
2914 +0.00,
-0.00,
-0.00,
+1.00,
+0.00,
+0.00
2915 +0.00,
-0.00,
-0.00,
-0.00,
+1.00,
+0.00
2916 -0.00,
+0.00,
+0.00,
+0.00,
-0.00,
+1.00
2924 +1.00,
+0.99,
+0.49,
-0.78
2925 +0.99,
+1.00,
+0.56,
-0.85
2926 +0.49,
+0.56,
+1.00,
-0.77
2927 -0.78,
-0.85,
-0.77,
+1.00
2930 +1.00,
+0.00,
+0.00,
+0.00
2931 +0.99,
+0.16,
+0.00,
+0.00
2932 +0.49,
+0.48,
+0.73,
+0.00
2933 -0.78,
-0.52,
-0.20,
+0.30
2937call setMatInv(inv, chol, auxil
= choLow, subset
= uppDia)
2939 +88.40,
-103.71,
-0.77,
-19.88
2940 +0.00,
+125.51,
+1.84,
+27.30
2941 +0.00,
+0.00,
+2.73,
+3.07
2942 +0.00,
+0.00,
+0.00,
+11.08
2943call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
2945 +88.40,
-103.71,
-0.77,
-19.88
2946 -103.71,
+125.51,
+1.84,
+27.30
2947 -0.77,
+1.84,
+2.73,
+3.07
2948 -19.88,
+27.30,
+3.07,
+11.08
2949mul
= matmul(mat, inv)
2951 +1.00,
+0.00,
-0.00,
+0.00
2952 +0.00,
+1.00,
-0.00,
+0.00
2953 +0.00,
+0.00,
+1.00,
+0.00
2954 -0.00,
-0.00,
+0.00,
+1.00
2957call setMatInv(inv, chol, auxil
= choLow, subset
= lowDia)
2959 +88.40,
+0.00,
+0.00,
+0.00
2960 -103.71,
+125.51,
+0.00,
+0.00
2961 -0.77,
+1.84,
+2.73,
+0.00
2962 -19.88,
+27.30,
+3.07,
+11.08
2963call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
2965 +88.40,
-103.71,
-0.77,
-19.88
2966 -103.71,
+125.51,
+1.84,
+27.30
2967 -0.77,
+1.84,
+2.73,
+3.07
2968 -19.88,
+27.30,
+3.07,
+11.08
2969mul
= matmul(mat, inv)
2971 +1.00,
+0.00,
-0.00,
+0.00
2972 +0.00,
+1.00,
-0.00,
+0.00
2973 +0.00,
+0.00,
+1.00,
+0.00
2974 -0.00,
-0.00,
+0.00,
+1.00
2991call setMatInv(inv, chol, auxil
= choLow, subset
= uppDia)
2995call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
2999mul
= matmul(mat, inv)
3005call setMatInv(inv, chol, auxil
= choLow, subset
= lowDia)
3009call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3013mul
= matmul(mat, inv)
3033call setMatInv(inv, chol, auxil
= choLow, subset
= uppDia)
3037call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3041mul
= matmul(mat, inv)
3047call setMatInv(inv, chol, auxil
= choLow, subset
= lowDia)
3051call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3055mul
= matmul(mat, inv)
3075call setMatInv(inv, chol, auxil
= choLow, subset
= uppDia)
3079call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3083mul
= matmul(mat, inv)
3089call setMatInv(inv, chol, auxil
= choLow, subset
= lowDia)
3093call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3097mul
= matmul(mat, inv)
3108 +1.00,
+0.60,
+0.37,
+0.63,
+0.45,
-0.02
3109 +0.60,
+1.00,
+0.84,
+0.36,
+0.07,
-0.23
3110 +0.37,
+0.84,
+1.00,
+0.02,
+0.28,
-0.38
3111 +0.63,
+0.36,
+0.02,
+1.00,
+0.37,
-0.20
3112 +0.45,
+0.07,
+0.28,
+0.37,
+1.00,
-0.10
3113 -0.02,
-0.23,
-0.38,
-0.20,
-0.10,
+1.00
3116 +1.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
3117 +0.60,
+0.80,
+0.00,
+0.00,
+0.00,
+0.00
3118 +0.37,
+0.77,
+0.51,
+0.00,
+0.00,
+0.00
3119 +0.63,
-0.02,
-0.40,
+0.66,
+0.00,
+0.00
3120 +0.45,
-0.25,
+0.60,
+0.48,
+0.37,
+0.00
3121 -0.02,
-0.28,
-0.31,
-0.48,
+0.68,
+0.36
3125call setMatInv(inv, chol, auxil
= choLow, subset
= uppDia)
3127 +6.32,
-25.85,
+23.94,
+9.84,
-11.14,
+3.97
3128 +0.00,
+181.65,
-176.39,
-81.05,
+76.00,
-33.30
3129 +0.00,
+0.00,
+173.09,
+79.68,
-74.06,
+33.16
3130 +0.00,
+0.00,
+0.00,
+38.49,
-34.20,
+15.63
3131 +0.00,
+0.00,
+0.00,
+0.00,
+33.12,
-13.96
3132 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+7.56
3133call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3135 +6.32,
-25.85,
+23.94,
+9.84,
-11.14,
+3.97
3136 -25.85,
+181.65,
-176.39,
-81.05,
+76.00,
-33.30
3137 +23.94,
-176.39,
+173.09,
+79.68,
-74.06,
+33.16
3138 +9.84,
-81.05,
+79.68,
+38.49,
-34.20,
+15.63
3139 -11.14,
+76.00,
-74.06,
-34.20,
+33.12,
-13.96
3140 +3.97,
-33.30,
+33.16,
+15.63,
-13.96,
+7.56
3141mul
= matmul(mat, inv)
3143 +1.00,
+0.00,
-0.00,
-0.00,
+0.00,
-0.00
3144 -0.00,
+1.00,
-0.00,
-0.00,
+0.00,
-0.00
3145 -0.00,
+0.00,
+1.00,
-0.00,
+0.00,
-0.00
3146 -0.00,
+0.00,
-0.00,
+1.00,
+0.00,
-0.00
3147 -0.00,
+0.00,
-0.00,
-0.00,
+1.00,
-0.00
3148 +0.00,
-0.00,
+0.00,
+0.00,
-0.00,
+1.00
3151call setMatInv(inv, chol, auxil
= choLow, subset
= lowDia)
3153 +6.32,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
3154 -25.85,
+181.65,
+0.00,
+0.00,
+0.00,
+0.00
3155 +23.94,
-176.39,
+173.09,
+0.00,
+0.00,
+0.00
3156 +9.84,
-81.05,
+79.68,
+38.49,
+0.00,
+0.00
3157 -11.14,
+76.00,
-74.06,
-34.20,
+33.12,
+0.00
3158 +3.97,
-33.30,
+33.16,
+15.63,
-13.96,
+7.56
3159call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3161 +6.32,
-25.85,
+23.94,
+9.84,
-11.14,
+3.97
3162 -25.85,
+181.65,
-176.39,
-81.05,
+76.00,
-33.30
3163 +23.94,
-176.39,
+173.09,
+79.68,
-74.06,
+33.16
3164 +9.84,
-81.05,
+79.68,
+38.49,
-34.20,
+15.63
3165 -11.14,
+76.00,
-74.06,
-34.20,
+33.12,
-13.96
3166 +3.97,
-33.30,
+33.16,
+15.63,
-13.96,
+7.56
3167mul
= matmul(mat, inv)
3169 +1.00,
+0.00,
-0.00,
-0.00,
+0.00,
-0.00
3170 -0.00,
+1.00,
-0.00,
-0.00,
+0.00,
-0.00
3171 -0.00,
+0.00,
+1.00,
-0.00,
+0.00,
-0.00
3172 -0.00,
+0.00,
-0.00,
+1.00,
+0.00,
-0.00
3173 -0.00,
+0.00,
-0.00,
-0.00,
+1.00,
-0.00
3174 +0.00,
-0.00,
+0.00,
+0.00,
-0.00,
+1.00
3193call setMatInv(inv, chol, auxil
= choLow, subset
= uppDia)
3195 +10.16,
+9.98,
-3.61
3196 +0.00,
+10.90,
-3.85
3198call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3200 +10.16,
+9.98,
-3.61
3201 +9.98,
+10.90,
-3.85
3203mul
= matmul(mat, inv)
3210call setMatInv(inv, chol, auxil
= choLow, subset
= lowDia)
3212 +10.16,
+0.00,
+0.00
3213 +9.98,
+10.90,
+0.00
3215call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3217 +10.16,
+9.98,
-3.61
3218 +9.98,
+10.90,
-3.85
3220mul
= matmul(mat, inv)
3243call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
3248call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3253mul
= matmul(mat, inv)
3260call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3265call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3270mul
= matmul(mat, inv)
3282 +1.00,
-1.00,
+0.29,
-0.55,
+0.02,
+0.35
3283 -1.00,
+1.00,
-0.23,
+0.59,
-0.08,
-0.37
3284 +0.29,
-0.23,
+1.00,
-0.03,
-0.59,
+0.05
3285 -0.55,
+0.59,
-0.03,
+1.00,
-0.68,
-0.79
3286 +0.02,
-0.08,
-0.59,
-0.68,
+1.00,
+0.58
3287 +0.35,
-0.37,
+0.05,
-0.79,
+0.58,
+1.00
3290 +1.00,
-1.00,
+0.29,
-0.55,
+0.02,
+0.35
3291 +0.00,
+0.08,
+0.77,
+0.50,
-0.72,
-0.28
3292 +0.00,
+0.00,
+0.56,
-0.44,
-0.07,
+0.29
3293 +0.00,
+0.00,
+0.00,
+0.51,
-0.68,
-0.65
3294 +0.00,
+0.00,
+0.00,
+0.00,
+0.11,
-0.52
3295 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.13
3299call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
3301 +206071.31,
+214051.69,
-22558.56,
-28192.10,
-17660.49,
-3491.07
3302 +0.00,
+222343.73,
-23433.43,
-29287.73,
-18347.41,
-3626.55
3303 +0.00,
+0.00,
+2473.55,
+3090.33,
+1938.74,
+381.63
3304 +0.00,
+0.00,
+0.00,
+3867.47,
+2424.31,
+479.60
3305 +0.00,
+0.00,
+0.00,
+0.00,
+1523.47,
+298.56
3306 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+62.00
3307call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3309 +206071.31,
+214051.69,
-22558.56,
-28192.10,
-17660.49,
-3491.07
3310 +214051.69,
+222343.73,
-23433.43,
-29287.73,
-18347.41,
-3626.55
3311 -22558.56,
-23433.43,
+2473.55,
+3090.33,
+1938.74,
+381.63
3312 -28192.10,
-29287.73,
+3090.33,
+3867.47,
+2424.31,
+479.60
3313 -17660.49,
-18347.41,
+1938.74,
+2424.31,
+1523.47,
+298.56
3314 -3491.07,
-3626.55,
+381.63,
+479.60,
+298.56,
+62.00
3315mul
= matmul(mat, inv)
3317 +0.97,
-0.02,
+0.00,
+0.00,
+0.00,
+0.00
3318 +0.03,
+1.02,
-0.00,
-0.00,
-0.00,
-0.00
3319 -0.01,
-0.01,
+1.00,
+0.00,
+0.00,
+0.00
3320 +0.02,
+0.02,
-0.00,
+1.00,
-0.00,
-0.00
3321 -0.00,
-0.00,
+0.00,
+0.00,
+1.00,
+0.00
3322 -0.01,
-0.01,
+0.00,
+0.00,
+0.00,
+1.00
3325call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3327 +206071.31,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
3328 +214051.69,
+222343.73,
+0.00,
+0.00,
+0.00,
+0.00
3329 -22558.56,
-23433.43,
+2473.55,
+0.00,
+0.00,
+0.00
3330 -28192.10,
-29287.73,
+3090.33,
+3867.47,
+0.00,
+0.00
3331 -17660.49,
-18347.41,
+1938.74,
+2424.31,
+1523.47,
+0.00
3332 -3491.07,
-3626.55,
+381.63,
+479.60,
+298.56,
+62.00
3333call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3335 +206071.31,
+214051.69,
-22558.56,
-28192.10,
-17660.49,
-3491.07
3336 +214051.69,
+222343.73,
-23433.43,
-29287.73,
-18347.41,
-3626.55
3337 -22558.56,
-23433.43,
+2473.55,
+3090.33,
+1938.74,
+381.63
3338 -28192.10,
-29287.73,
+3090.33,
+3867.47,
+2424.31,
+479.60
3339 -17660.49,
-18347.41,
+1938.74,
+2424.31,
+1523.47,
+298.56
3340 -3491.07,
-3626.55,
+381.63,
+479.60,
+298.56,
+62.00
3341mul
= matmul(mat, inv)
3343 +0.97,
-0.02,
+0.00,
+0.00,
+0.00,
+0.00
3344 +0.03,
+1.02,
-0.00,
-0.00,
-0.00,
-0.00
3345 -0.01,
-0.01,
+1.00,
+0.00,
+0.00,
+0.00
3346 +0.02,
+0.02,
-0.00,
+1.00,
-0.00,
-0.00
3347 -0.00,
-0.00,
+0.00,
+0.00,
+1.00,
+0.00
3348 -0.01,
-0.01,
+0.00,
+0.00,
+0.00,
+1.00
3356 +1.00,
-0.74,
+0.52,
+0.19,
+0.29,
-0.55
3357 -0.74,
+1.00,
-0.06,
-0.38,
+0.18,
+0.72
3358 +0.52,
-0.06,
+1.00,
+0.40,
+0.39,
-0.43
3359 +0.19,
-0.38,
+0.40,
+1.00,
+0.28,
-0.41
3360 +0.29,
+0.18,
+0.39,
+0.28,
+1.00,
+0.40
3361 -0.55,
+0.72,
-0.43,
-0.41,
+0.40,
+1.00
3364 +1.00,
-0.74,
+0.52,
+0.19,
+0.29,
-0.55
3365 +0.00,
+0.67,
+0.48,
-0.35,
+0.59,
+0.46
3366 +0.00,
+0.00,
+0.71,
+0.66,
-0.06,
-0.53
3367 +0.00,
+0.00,
+0.00,
+0.63,
+0.74,
+0.33
3368 +0.00,
+0.00,
+0.00,
+0.00,
+0.13,
+0.07
3369 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+0.30
3373call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
3375 +352.23,
+341.36,
-174.84,
+169.88,
-141.57,
-1.56
3376 +0.00,
+335.25,
-172.75,
+164.44,
-134.33,
-7.35
3377 +0.00,
+0.00,
+91.58,
-83.90,
+66.44,
+6.92
3378 +0.00,
+0.00,
+0.00,
+83.64,
-69.48,
+0.75
3379 +0.00,
+0.00,
+0.00,
+0.00,
+61.64,
-5.48
3380 +0.00,
+0.00,
+0.00,
+0.00,
+0.00,
+10.92
3381call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3383 +352.23,
+341.36,
-174.84,
+169.88,
-141.57,
-1.56
3384 +341.36,
+335.25,
-172.75,
+164.44,
-134.33,
-7.35
3385 -174.84,
-172.75,
+91.58,
-83.90,
+66.44,
+6.92
3386 +169.88,
+164.44,
-83.90,
+83.64,
-69.48,
+0.75
3387 -141.57,
-134.33,
+66.44,
-69.48,
+61.64,
-5.48
3388 -1.56,
-7.35,
+6.92,
+0.75,
-5.48,
+10.92
3389mul
= matmul(mat, inv)
3391 +1.00,
-0.00,
+0.00,
-0.00,
-0.00,
+0.00
3392 -0.00,
+1.00,
-0.00,
+0.00,
+0.00,
-0.00
3393 +0.00,
-0.00,
+1.00,
+0.00,
-0.00,
+0.00
3394 +0.00,
+0.00,
-0.00,
+1.00,
-0.00,
+0.00
3395 -0.00,
-0.00,
+0.00,
-0.00,
+1.00,
+0.00
3396 -0.00,
+0.00,
-0.00,
-0.00,
+0.00,
+1.00
3399call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3401 +352.23,
+0.00,
+0.00,
+0.00,
+0.00,
+0.00
3402 +341.36,
+335.25,
+0.00,
+0.00,
+0.00,
+0.00
3403 -174.84,
-172.75,
+91.58,
+0.00,
+0.00,
+0.00
3404 +169.88,
+164.44,
-83.90,
+83.64,
+0.00,
+0.00
3405 -141.57,
-134.33,
+66.44,
-69.48,
+61.64,
+0.00
3406 -1.56,
-7.35,
+6.92,
+0.75,
-5.48,
+10.92
3407call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3409 +352.23,
+341.36,
-174.84,
+169.88,
-141.57,
-1.56
3410 +341.36,
+335.25,
-172.75,
+164.44,
-134.33,
-7.35
3411 -174.84,
-172.75,
+91.58,
-83.90,
+66.44,
+6.92
3412 +169.88,
+164.44,
-83.90,
+83.64,
-69.48,
+0.75
3413 -141.57,
-134.33,
+66.44,
-69.48,
+61.64,
-5.48
3414 -1.56,
-7.35,
+6.92,
+0.75,
-5.48,
+10.92
3415mul
= matmul(mat, inv)
3417 +1.00,
-0.00,
+0.00,
-0.00,
-0.00,
+0.00
3418 -0.00,
+1.00,
-0.00,
+0.00,
+0.00,
-0.00
3419 +0.00,
-0.00,
+1.00,
+0.00,
-0.00,
+0.00
3420 +0.00,
+0.00,
-0.00,
+1.00,
-0.00,
+0.00
3421 -0.00,
-0.00,
+0.00,
-0.00,
+1.00,
+0.00
3422 -0.00,
+0.00,
-0.00,
-0.00,
+0.00,
+1.00
3430 +1.00,
+0.56,
-0.09,
-0.93,
+0.62
3431 +0.56,
+1.00,
-0.44,
-0.28,
+0.66
3432 -0.09,
-0.44,
+1.00,
+0.12,
-0.29
3433 -0.93,
-0.28,
+0.12,
+1.00,
-0.55
3434 +0.62,
+0.66,
-0.29,
-0.55,
+1.00
3437 +1.00,
+0.56,
-0.09,
-0.93,
+0.62
3438 +0.00,
+0.83,
-0.47,
+0.29,
+0.38
3439 +0.00,
+0.00,
+0.88,
+0.19,
-0.06
3440 +0.00,
+0.00,
+0.00,
+0.14,
-0.54
3441 +0.00,
+0.00,
+0.00,
+0.00,
+0.43
3445call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
3447 +160.43,
-77.18,
-30.19,
+143.29,
+21.97
3448 +0.00,
+39.16,
+15.07,
-69.16,
-11.87
3449 +0.00,
+0.00,
+6.92,
-26.97,
-4.14
3450 +0.00,
+0.00,
+0.00,
+129.44,
+20.58
3451 +0.00,
+0.00,
+0.00,
+0.00,
+5.38
3452call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3454 +160.43,
-77.18,
-30.19,
+143.29,
+21.97
3455 -77.18,
+39.16,
+15.07,
-69.16,
-11.87
3456 -30.19,
+15.07,
+6.92,
-26.97,
-4.14
3457 +143.29,
-69.16,
-26.97,
+129.44,
+20.58
3458 +21.97,
-11.87,
-4.14,
+20.58,
+5.38
3459mul
= matmul(mat, inv)
3461 +1.00,
+0.00,
+0.00,
-0.00,
+0.00
3462 +0.00,
+1.00,
-0.00,
+0.00,
+0.00
3463 +0.00,
-0.00,
+1.00,
+0.00,
+0.00
3464 -0.00,
-0.00,
-0.00,
+1.00,
-0.00
3465 +0.00,
+0.00,
+0.00,
-0.00,
+1.00
3468call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3470 +160.43,
+0.00,
+0.00,
+0.00,
+0.00
3471 -77.18,
+39.16,
+0.00,
+0.00,
+0.00
3472 -30.19,
+15.07,
+6.92,
+0.00,
+0.00
3473 +143.29,
-69.16,
-26.97,
+129.44,
+0.00
3474 +21.97,
-11.87,
-4.14,
+20.58,
+5.38
3475call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3477 +160.43,
-77.18,
-30.19,
+143.29,
+21.97
3478 -77.18,
+39.16,
+15.07,
-69.16,
-11.87
3479 -30.19,
+15.07,
+6.92,
-26.97,
-4.14
3480 +143.29,
-69.16,
-26.97,
+129.44,
+20.58
3481 +21.97,
-11.87,
-4.14,
+20.58,
+5.38
3482mul
= matmul(mat, inv)
3484 +1.00,
+0.00,
+0.00,
-0.00,
+0.00
3485 +0.00,
+1.00,
-0.00,
+0.00,
+0.00
3486 +0.00,
-0.00,
+1.00,
+0.00,
+0.00
3487 -0.00,
-0.00,
-0.00,
+1.00,
-0.00
3488 +0.00,
+0.00,
+0.00,
-0.00,
+1.00
3496 +1.00,
-0.38,
+0.09,
+0.69,
-0.54
3497 -0.38,
+1.00,
+0.65,
+0.07,
+0.78
3498 +0.09,
+0.65,
+1.00,
+0.74,
+0.68
3499 +0.69,
+0.07,
+0.74,
+1.00,
+0.07
3500 -0.54,
+0.78,
+0.68,
+0.07,
+1.00
3503 +1.00,
-0.38,
+0.09,
+0.69,
-0.54
3504 +0.00,
+0.92,
+0.74,
+0.36,
+0.61
3505 +0.00,
+0.00,
+0.66,
+0.63,
+0.40
3506 +0.00,
+0.00,
+0.00,
+0.10,
-0.32
3507 +0.00,
+0.00,
+0.00,
+0.00,
+0.26
3511call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
3513 +40.38,
-34.40,
+105.02,
-102.20,
-15.39
3514 +0.00,
+35.81,
-102.76,
+96.25,
+16.42
3515 +0.00,
+0.00,
+317.36,
-296.48,
-57.50
3516 +0.00,
+0.00,
+0.00,
+280.95,
+51.03
3517 +0.00,
+0.00,
+0.00,
+0.00,
+15.27
3518call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3520 +40.38,
-34.40,
+105.02,
-102.20,
-15.39
3521 -34.40,
+35.81,
-102.76,
+96.25,
+16.42
3522 +105.02,
-102.76,
+317.36,
-296.48,
-57.50
3523 -102.20,
+96.25,
-296.48,
+280.95,
+51.03
3524 -15.39,
+16.42,
-57.50,
+51.03,
+15.27
3525mul
= matmul(mat, inv)
3527 +1.00,
-0.00,
+0.00,
+0.00,
-0.00
3528 +0.00,
+1.00,
+0.00,
-0.00,
-0.00
3529 +0.00,
-0.00,
+1.00,
-0.00,
-0.00
3530 +0.00,
-0.00,
+0.00,
+1.00,
-0.00
3531 +0.00,
-0.00,
+0.00,
-0.00,
+1.00
3534call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3536 +40.38,
+0.00,
+0.00,
+0.00,
+0.00
3537 -34.40,
+35.81,
+0.00,
+0.00,
+0.00
3538 +105.02,
-102.76,
+317.36,
+0.00,
+0.00
3539 -102.20,
+96.25,
-296.48,
+280.95,
+0.00
3540 -15.39,
+16.42,
-57.50,
+51.03,
+15.27
3541call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3543 +40.38,
-34.40,
+105.02,
-102.20,
-15.39
3544 -34.40,
+35.81,
-102.76,
+96.25,
+16.42
3545 +105.02,
-102.76,
+317.36,
-296.48,
-57.50
3546 -102.20,
+96.25,
-296.48,
+280.95,
+51.03
3547 -15.39,
+16.42,
-57.50,
+51.03,
+15.27
3548mul
= matmul(mat, inv)
3550 +1.00,
-0.00,
+0.00,
+0.00,
-0.00
3551 +0.00,
+1.00,
+0.00,
-0.00,
-0.00
3552 +0.00,
-0.00,
+1.00,
-0.00,
-0.00
3553 +0.00,
-0.00,
+0.00,
+1.00,
-0.00
3554 +0.00,
-0.00,
+0.00,
-0.00,
+1.00
3571call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
3575call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3579mul
= matmul(mat, inv)
3585call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3589call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3593mul
= matmul(mat, inv)
3604 +1.00,
-0.53,
-0.77,
-0.56,
+0.59
3605 -0.53,
+1.00,
+0.45,
-0.26,
-0.05
3606 -0.77,
+0.45,
+1.00,
+0.09,
-0.63
3607 -0.56,
-0.26,
+0.09,
+1.00,
-0.33
3608 +0.59,
-0.05,
-0.63,
-0.33,
+1.00
3611 +1.00,
-0.53,
-0.77,
-0.56,
+0.59
3612 +0.00,
+0.85,
+0.05,
-0.66,
+0.31
3613 +0.00,
+0.00,
+0.63,
-0.49,
-0.30
3614 +0.00,
+0.00,
+0.00,
+0.11,
+0.53
3615 +0.00,
+0.00,
+0.00,
+0.00,
+0.44
3619call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
3621 +559.21,
+272.38,
+250.97,
+346.91,
-42.39
3622 +0.00,
+134.18,
+121.26,
+169.31,
-21.08
3623 +0.00,
+0.00,
+114.98,
+155.69,
-17.59
3624 +0.00,
+0.00,
+0.00,
+216.43,
-25.88
3625 +0.00,
+0.00,
+0.00,
+0.00,
+5.23
3626call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3628 +559.21,
+272.38,
+250.97,
+346.91,
-42.39
3629 +272.38,
+134.18,
+121.26,
+169.31,
-21.08
3630 +250.97,
+121.26,
+114.98,
+155.69,
-17.59
3631 +346.91,
+169.31,
+155.69,
+216.43,
-25.88
3632 -42.39,
-21.08,
-17.59,
-25.88,
+5.23
3633mul
= matmul(mat, inv)
3635 +1.00,
+0.00,
+0.00,
+0.00,
-0.00
3636 -0.00,
+1.00,
-0.00,
-0.00,
-0.00
3637 -0.00,
-0.00,
+1.00,
-0.00,
-0.00
3638 -0.00,
+0.00,
-0.00,
+1.00,
-0.00
3639 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
3642call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3644 +559.21,
+0.00,
+0.00,
+0.00,
+0.00
3645 +272.38,
+134.18,
+0.00,
+0.00,
+0.00
3646 +250.97,
+121.26,
+114.98,
+0.00,
+0.00
3647 +346.91,
+169.31,
+155.69,
+216.43,
+0.00
3648 -42.39,
-21.08,
-17.59,
-25.88,
+5.23
3649call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3651 +559.21,
+272.38,
+250.97,
+346.91,
-42.39
3652 +272.38,
+134.18,
+121.26,
+169.31,
-21.08
3653 +250.97,
+121.26,
+114.98,
+155.69,
-17.59
3654 +346.91,
+169.31,
+155.69,
+216.43,
-25.88
3655 -42.39,
-21.08,
-17.59,
-25.88,
+5.23
3656mul
= matmul(mat, inv)
3658 +1.00,
+0.00,
+0.00,
+0.00,
-0.00
3659 -0.00,
+1.00,
-0.00,
-0.00,
-0.00
3660 -0.00,
-0.00,
+1.00,
-0.00,
-0.00
3661 -0.00,
+0.00,
-0.00,
+1.00,
-0.00
3662 +0.00,
+0.00,
+0.00,
+0.00,
+1.00
3670 +1.00,
-0.98,
-0.65,
-0.23
3671 -0.98,
+1.00,
+0.47,
+0.06
3672 -0.65,
+0.47,
+1.00,
+0.80
3673 -0.23,
+0.06,
+0.80,
+1.00
3676 +1.00,
-0.98,
-0.65,
-0.23
3677 +0.00,
+0.22,
-0.74,
-0.75
3678 +0.00,
+0.00,
+0.19,
+0.54
3679 +0.00,
+0.00,
+0.00,
+0.31
3683call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
3685 +1016.49,
+846.63,
+319.51,
-77.20
3686 +0.00,
+707.21,
+263.65,
-62.43
3687 +0.00,
+0.00,
+106.24,
-28.80
3688 +0.00,
+0.00,
+0.00,
+10.40
3689call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3691 +1016.49,
+846.63,
+319.51,
-77.20
3692 +846.63,
+707.21,
+263.65,
-62.43
3693 +319.51,
+263.65,
+106.24,
-28.80
3694 -77.20,
-62.43,
-28.80,
+10.40
3695mul
= matmul(mat, inv)
3697 +1.00,
+0.00,
+0.00,
-0.00
3698 -0.00,
+1.00,
-0.00,
+0.00
3699 -0.00,
-0.00,
+1.00,
+0.00
3700 -0.00,
-0.00,
-0.00,
+1.00
3703call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3705 +1016.49,
+0.00,
+0.00,
+0.00
3706 +846.63,
+707.21,
+0.00,
+0.00
3707 +319.51,
+263.65,
+106.24,
+0.00
3708 -77.20,
-62.43,
-28.80,
+10.40
3709call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3711 +1016.49,
+846.63,
+319.51,
-77.20
3712 +846.63,
+707.21,
+263.65,
-62.43
3713 +319.51,
+263.65,
+106.24,
-28.80
3714 -77.20,
-62.43,
-28.80,
+10.40
3715mul
= matmul(mat, inv)
3717 +1.00,
+0.00,
+0.00,
-0.00
3718 -0.00,
+1.00,
-0.00,
+0.00
3719 -0.00,
-0.00,
+1.00,
+0.00
3720 -0.00,
-0.00,
-0.00,
+1.00
3735call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
3738call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3741mul
= matmul(mat, inv)
3746call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3749call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3752mul
= matmul(mat, inv)
3769call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
3772call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3775mul
= matmul(mat, inv)
3780call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3783call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3786mul
= matmul(mat, inv)
3797(
+9.00,
+0.00), (
+3.00,
+3.00), (
+3.00,
-3.00)
3798(
+3.00,
-3.00), (
+18.00,
+0.00), (
+8.00,
-6.00)
3799(
+3.00,
+3.00), (
+8.00,
+6.00), (
+43.00,
+0.00)
3802(
+3.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
3803(
+1.00,
-1.00), (
+4.00,
+0.00), (
+0.00,
+0.00)
3804(
+1.00,
+1.00), (
+2.00,
+1.00), (
+6.00,
+0.00)
3807call setMatInv(inv, chol, auxil
= choLow, subset
= uppDia)
3809(
+0.13,
+0.00), (
-0.02,
-0.03), (
-0.00,
+0.01)
3810(
+0.00,
+0.00), (
+0.07,
+0.00), (
-0.01,
+0.01)
3811(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.03,
+0.00)
3812call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3814(
+0.13,
+0.00), (
-0.02,
-0.03), (
-0.00,
+0.01)
3815(
-0.02,
+0.03), (
+0.07,
+0.00), (
-0.01,
+0.01)
3816(
-0.00,
-0.01), (
-0.01,
-0.01), (
+0.03,
+0.00)
3817mul
= matmul(mat, inv)
3819(
+1.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
-0.00)
3820(
+0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
3821(
+0.00,
+0.00), (
-0.00,
-0.00), (
+1.00,
-0.00)
3824call setMatInv(inv, chol, auxil
= choLow, subset
= lowDia)
3826(
+0.13,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
3827(
-0.02,
+0.03), (
+0.07,
+0.00), (
+0.00,
+0.00)
3828(
-0.00,
-0.01), (
-0.01,
-0.01), (
+0.03,
+0.00)
3829call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3831(
+0.13,
+0.00), (
-0.02,
-0.03), (
-0.00,
+0.01)
3832(
-0.02,
+0.03), (
+0.07,
+0.00), (
-0.01,
+0.01)
3833(
-0.00,
-0.01), (
-0.01,
-0.01), (
+0.03,
+0.00)
3834mul
= matmul(mat, inv)
3836(
+1.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
-0.00)
3837(
+0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
3838(
+0.00,
+0.00), (
-0.00,
-0.00), (
+1.00,
-0.00)
3842(
+9.00,
+0.00), (
+3.00,
+3.00), (
+3.00,
-3.00)
3843(
+3.00,
-3.00), (
+18.00,
+0.00), (
+8.00,
-6.00)
3844(
+3.00,
+3.00), (
+8.00,
+6.00), (
+43.00,
+0.00)
3847(
+3.00,
+0.00), (
+1.00,
+1.00), (
+1.00,
-1.00)
3848(
+0.00,
+0.00), (
+4.00,
+0.00), (
+2.00,
-1.00)
3849(
+0.00,
+0.00), (
+0.00,
+0.00), (
+6.00,
+0.00)
3852call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3854(
+0.13,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
3855(
-0.02,
+0.03), (
+0.07,
+0.00), (
+0.00,
+0.00)
3856(
-0.00,
-0.01), (
-0.01,
-0.01), (
+0.03,
+0.00)
3857call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3859(
+0.13,
+0.00), (
-0.02,
-0.03), (
-0.00,
+0.01)
3860(
-0.02,
+0.03), (
+0.07,
+0.00), (
-0.01,
+0.01)
3861(
-0.00,
-0.01), (
-0.01,
-0.01), (
+0.03,
+0.00)
3862mul
= matmul(mat, inv)
3864(
+1.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
-0.00)
3865(
+0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
3866(
+0.00,
+0.00), (
-0.00,
-0.00), (
+1.00,
-0.00)
3869call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
3871(
+0.13,
+0.00), (
-0.02,
-0.03), (
-0.00,
+0.01)
3872(
+0.00,
+0.00), (
+0.07,
+0.00), (
-0.01,
+0.01)
3873(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.03,
+0.00)
3874call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3876(
+0.13,
+0.00), (
-0.02,
-0.03), (
-0.00,
+0.01)
3877(
-0.02,
+0.03), (
+0.07,
+0.00), (
-0.01,
+0.01)
3878(
-0.00,
-0.01), (
-0.01,
-0.01), (
+0.03,
+0.00)
3879mul
= matmul(mat, inv)
3881(
+1.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
-0.00)
3882(
+0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
3883(
+0.00,
+0.00), (
-0.00,
-0.00), (
+1.00,
-0.00)
3890(
+2.47,
+0.00), (
+1.61,
-0.29), (
+1.61,
+1.28)
3891(
+1.61,
+0.29), (
+2.08,
+0.00), (
+2.16,
+0.66)
3892(
+1.61,
-1.28), (
+2.16,
-0.66), (
+5.00,
+0.00)
3895(
+1.57,
+0.00), (
+1.02,
-0.19), (
+1.03,
+0.81)
3896(
+0.00,
+0.00), (
+1.00,
+0.00), (
+1.26,
-0.36)
3897(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.26,
+0.00)
3900call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3902(
+1.36,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
3903(
-0.95,
-0.80), (
+2.07,
+0.00), (
+0.00,
+0.00)
3904(
+0.08,
+0.57), (
-0.79,
-0.23), (
+0.63,
+0.00)
3905call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3907(
+1.36,
+0.00), (
-0.95,
+0.80), (
+0.08,
-0.57)
3908(
-0.95,
-0.80), (
+2.07,
+0.00), (
-0.79,
+0.23)
3909(
+0.08,
+0.57), (
-0.79,
-0.23), (
+0.63,
+0.00)
3910mul
= matmul(mat, inv)
3912(
+1.00,
-0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
3913(
-0.00,
+0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
3914(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
3917call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
3919(
+1.36,
+0.00), (
-0.95,
+0.80), (
+0.08,
-0.57)
3920(
+0.00,
+0.00), (
+2.07,
+0.00), (
-0.79,
+0.23)
3921(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.63,
+0.00)
3922call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3924(
+1.36,
+0.00), (
-0.95,
+0.80), (
+0.08,
-0.57)
3925(
-0.95,
-0.80), (
+2.07,
+0.00), (
-0.79,
+0.23)
3926(
+0.08,
+0.57), (
-0.79,
-0.23), (
+0.63,
+0.00)
3927mul
= matmul(mat, inv)
3929(
+1.00,
-0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
3930(
-0.00,
+0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
3931(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
3944call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3947call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3950mul
= matmul(mat, inv)
3955call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
3958call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
3961mul
= matmul(mat, inv)
3970(
+3.60,
+0.00), (
+3.50,
-0.61), (
+3.79,
+0.48), (
+2.18,
-1.18), (
+3.39,
-1.23)
3971(
+3.50,
+0.61), (
+4.79,
+0.00), (
+5.45,
+0.11), (
+3.80,
-1.60), (
+5.72,
-0.44)
3972(
+3.79,
-0.48), (
+5.45,
-0.11), (
+8.64,
+0.00), (
+6.79,
-1.28), (
+8.09,
+0.79)
3973(
+2.18,
+1.18), (
+3.80,
+1.60), (
+6.79,
+1.28), (
+9.30,
+0.00), (
+10.38,
+1.60)
3974(
+3.39,
+1.23), (
+5.72,
+0.44), (
+8.09,
-0.79), (
+10.38,
-1.60), (
+16.85,
+0.00)
3977(
+1.90,
+0.00), (
+1.85,
-0.32), (
+2.00,
+0.25), (
+1.15,
-0.62), (
+1.79,
-0.65)
3978(
+0.00,
+0.00), (
+1.13,
+0.00), (
+1.63,
-0.88), (
+1.31,
-0.73), (
+1.95,
+0.16)
3979(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.08,
+0.00), (
+1.74,
+0.25), (
+1.53,
+0.51)
3980(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.50,
+0.00), (
+1.78,
-0.59)
3981(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.80,
+0.00)
3984call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
3986(
+2.98,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
3987(
-1.97,
-2.14), (
+4.15,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
3988(
+0.11,
+1.99), (
-2.39,
-0.86), (
+2.36,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
3989(
+0.05,
-0.58), (
+0.92,
+0.13), (
-1.03,
-0.13), (
+0.92,
+0.00), (
+0.00,
+0.00)
3990(
-0.11,
-0.03), (
-0.25,
-0.09), (
+0.18,
+0.25), (
-0.36,
-0.12), (
+0.31,
+0.00)
3991call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
3993(
+2.98,
+0.00), (
-1.97,
+2.14), (
+0.11,
-1.99), (
+0.05,
+0.58), (
-0.11,
+0.03)
3994(
-1.97,
-2.14), (
+4.15,
+0.00), (
-2.39,
+0.86), (
+0.92,
-0.13), (
-0.25,
+0.09)
3995(
+0.11,
+1.99), (
-2.39,
-0.86), (
+2.36,
+0.00), (
-1.03,
+0.13), (
+0.18,
-0.25)
3996(
+0.05,
-0.58), (
+0.92,
+0.13), (
-1.03,
-0.13), (
+0.92,
+0.00), (
-0.36,
+0.12)
3997(
-0.11,
-0.03), (
-0.25,
-0.09), (
+0.18,
+0.25), (
-0.36,
-0.12), (
+0.31,
+0.00)
3998mul
= matmul(mat, inv)
4000(
+1.00,
+0.00), (
-0.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
4001(
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.00,
-0.00), (
-0.00,
+0.00), (
+0.00,
-0.00)
4002(
+0.00,
+0.00), (
-0.00,
+0.00), (
+1.00,
-0.00), (
-0.00,
+0.00), (
+0.00,
+0.00)
4003(
+0.00,
+0.00), (
-0.00,
+0.00), (
-0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
4004(
+0.00,
-0.00), (
+0.00,
+0.00), (
-0.00,
-0.00), (
-0.00,
+0.00), (
+1.00,
+0.00)
4007call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
4009(
+2.98,
+0.00), (
-1.97,
+2.14), (
+0.11,
-1.99), (
+0.05,
+0.58), (
-0.11,
+0.03)
4010(
+0.00,
+0.00), (
+4.15,
+0.00), (
-2.39,
+0.86), (
+0.92,
-0.13), (
-0.25,
+0.09)
4011(
+0.00,
+0.00), (
+0.00,
+0.00), (
+2.36,
+0.00), (
-1.03,
+0.13), (
+0.18,
-0.25)
4012(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.92,
+0.00), (
-0.36,
+0.12)
4013(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.31,
+0.00)
4014call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
4016(
+2.98,
+0.00), (
-1.97,
+2.14), (
+0.11,
-1.99), (
+0.05,
+0.58), (
-0.11,
+0.03)
4017(
-1.97,
-2.14), (
+4.15,
+0.00), (
-2.39,
+0.86), (
+0.92,
-0.13), (
-0.25,
+0.09)
4018(
+0.11,
+1.99), (
-2.39,
-0.86), (
+2.36,
+0.00), (
-1.03,
+0.13), (
+0.18,
-0.25)
4019(
+0.05,
-0.58), (
+0.92,
+0.13), (
-1.03,
-0.13), (
+0.92,
+0.00), (
-0.36,
+0.12)
4020(
-0.11,
-0.03), (
-0.25,
-0.09), (
+0.18,
+0.25), (
-0.36,
-0.12), (
+0.31,
+0.00)
4021mul
= matmul(mat, inv)
4023(
+1.00,
+0.00), (
-0.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
4024(
+0.00,
+0.00), (
+1.00,
+0.00), (
-0.00,
-0.00), (
-0.00,
+0.00), (
+0.00,
-0.00)
4025(
+0.00,
+0.00), (
-0.00,
+0.00), (
+1.00,
-0.00), (
-0.00,
+0.00), (
+0.00,
+0.00)
4026(
+0.00,
+0.00), (
-0.00,
+0.00), (
-0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
4027(
+0.00,
-0.00), (
+0.00,
+0.00), (
-0.00,
-0.00), (
-0.00,
+0.00), (
+1.00,
+0.00)
4034(
+1.91,
+0.00), (
+1.54,
+0.80), (
+2.75,
+0.85), (
+1.54,
+0.30), (
+2.43,
+0.02)
4035(
+1.54,
-0.80), (
+4.22,
+0.00), (
+5.33,
+0.06), (
+3.10,
-1.96), (
+3.70,
-2.62)
4036(
+2.75,
-0.85), (
+5.33,
-0.06), (
+8.75,
+0.00), (
+5.10,
-1.54), (
+6.55,
-4.15)
4037(
+1.54,
-0.30), (
+3.10,
+1.96), (
+5.10,
+1.54), (
+7.54,
+0.00), (
+8.01,
-2.69)
4038(
+2.43,
-0.02), (
+3.70,
+2.62), (
+6.55,
+4.15), (
+8.01,
+2.69), (
+13.93,
+0.00)
4041(
+1.38,
+0.00), (
+1.11,
+0.58), (
+1.99,
+0.62), (
+1.11,
+0.22), (
+1.76,
+0.02)
4042(
+0.00,
+0.00), (
+1.63,
+0.00), (
+1.70,
+0.33), (
+1.07,
-0.96), (
+1.07,
-1.00)
4043(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.19,
+0.00), (
+1.05,
+0.58), (
+1.30,
-0.88)
4044(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.66,
+0.00), (
+1.87,
-0.36)
4045(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.62,
+0.00)
4048call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
4050(
+1.59,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
4051(
+0.41,
+1.00), (
+2.47,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
4052(
-0.91,
-0.50), (
-1.57,
+0.60), (
+1.53,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
4053(
+0.42,
-0.24), (
-0.13,
-1.03), (
-0.23,
+0.65), (
+0.87,
+0.00), (
+0.00,
+0.00)
4054(
-0.21,
+0.22), (
+0.06,
+0.51), (
+0.00,
-0.42), (
-0.43,
-0.08), (
+0.38,
+0.00)
4055call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
4057(
+1.59,
+0.00), (
+0.41,
-1.00), (
-0.91,
+0.50), (
+0.42,
+0.24), (
-0.21,
-0.22)
4058(
+0.41,
+1.00), (
+2.47,
+0.00), (
-1.57,
-0.60), (
-0.13,
+1.03), (
+0.06,
-0.51)
4059(
-0.91,
-0.50), (
-1.57,
+0.60), (
+1.53,
+0.00), (
-0.23,
-0.65), (
+0.00,
+0.42)
4060(
+0.42,
-0.24), (
-0.13,
-1.03), (
-0.23,
+0.65), (
+0.87,
+0.00), (
-0.43,
+0.08)
4061(
-0.21,
+0.22), (
+0.06,
+0.51), (
+0.00,
-0.42), (
-0.43,
-0.08), (
+0.38,
+0.00)
4062mul
= matmul(mat, inv)
4064(
+1.00,
+0.00), (
+0.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
-0.00), (
-0.00,
-0.00)
4065(
+0.00,
+0.00), (
+1.00,
-0.00), (
-0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
4066(
+0.00,
-0.00), (
+0.00,
-0.00), (
+1.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
4067(
+0.00,
+0.00), (
-0.00,
-0.00), (
-0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
4068(
+0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
-0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
4071call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
4073(
+1.59,
+0.00), (
+0.41,
-1.00), (
-0.91,
+0.50), (
+0.42,
+0.24), (
-0.21,
-0.22)
4074(
+0.00,
+0.00), (
+2.47,
+0.00), (
-1.57,
-0.60), (
-0.13,
+1.03), (
+0.06,
-0.51)
4075(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.53,
+0.00), (
-0.23,
-0.65), (
+0.00,
+0.42)
4076(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.87,
+0.00), (
-0.43,
+0.08)
4077(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.38,
+0.00)
4078call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
4080(
+1.59,
+0.00), (
+0.41,
-1.00), (
-0.91,
+0.50), (
+0.42,
+0.24), (
-0.21,
-0.22)
4081(
+0.41,
+1.00), (
+2.47,
+0.00), (
-1.57,
-0.60), (
-0.13,
+1.03), (
+0.06,
-0.51)
4082(
-0.91,
-0.50), (
-1.57,
+0.60), (
+1.53,
+0.00), (
-0.23,
-0.65), (
+0.00,
+0.42)
4083(
+0.42,
-0.24), (
-0.13,
-1.03), (
-0.23,
+0.65), (
+0.87,
+0.00), (
-0.43,
+0.08)
4084(
-0.21,
+0.22), (
+0.06,
+0.51), (
+0.00,
-0.42), (
-0.43,
-0.08), (
+0.38,
+0.00)
4085mul
= matmul(mat, inv)
4087(
+1.00,
+0.00), (
+0.00,
+0.00), (
-0.00,
-0.00), (
+0.00,
-0.00), (
-0.00,
-0.00)
4088(
+0.00,
+0.00), (
+1.00,
-0.00), (
-0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
4089(
+0.00,
-0.00), (
+0.00,
-0.00), (
+1.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
4090(
+0.00,
+0.00), (
-0.00,
-0.00), (
-0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
4091(
+0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
-0.00), (
+0.00,
+0.00), (
+1.00,
+0.00)
4098(
+3.28,
+0.00), (
+2.06,
+1.76)
4099(
+2.06,
-1.76), (
+5.32,
+0.00)
4102(
+1.81,
+0.00), (
+1.14,
+0.97)
4103(
+0.00,
+0.00), (
+1.75,
+0.00)
4106call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
4108(
+0.53,
+0.00), (
+0.00,
+0.00)
4109(
-0.20,
+0.17), (
+0.32,
+0.00)
4110call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
4112(
+0.53,
+0.00), (
-0.20,
-0.17)
4113(
-0.20,
+0.17), (
+0.32,
+0.00)
4114mul
= matmul(mat, inv)
4116(
+1.00,
-0.00), (
-0.00,
+0.00)
4117(
-0.00,
+0.00), (
+1.00,
+0.00)
4120call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
4122(
+0.53,
+0.00), (
-0.20,
-0.17)
4123(
+0.00,
+0.00), (
+0.32,
+0.00)
4124call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
4126(
+0.53,
+0.00), (
-0.20,
-0.17)
4127(
-0.20,
+0.17), (
+0.32,
+0.00)
4128mul
= matmul(mat, inv)
4130(
+1.00,
-0.00), (
-0.00,
+0.00)
4131(
-0.00,
+0.00), (
+1.00,
+0.00)
4138(
+1.48,
+0.00), (
+2.10,
+1.03), (
+1.58,
+1.17), (
+1.87,
-1.12), (
+1.55,
-0.26)
4139(
+2.10,
-1.03), (
+6.09,
+0.00), (
+5.70,
+1.91), (
+3.77,
-2.91), (
+4.32,
-0.33)
4140(
+1.58,
-1.17), (
+5.70,
-1.91), (
+8.26,
+0.00), (
+4.94,
-3.69), (
+6.78,
-1.95)
4141(
+1.87,
+1.12), (
+3.77,
+2.91), (
+4.94,
+3.69), (
+7.55,
+0.00), (
+7.94,
+0.59)
4142(
+1.55,
+0.26), (
+4.32,
+0.33), (
+6.78,
+1.95), (
+7.94,
-0.59), (
+12.63,
+0.00)
4145(
+1.21,
+0.00), (
+1.73,
+0.85), (
+1.30,
+0.96), (
+1.54,
-0.92), (
+1.28,
-0.21)
4146(
+0.00,
+0.00), (
+1.54,
+0.00), (
+1.70,
+0.88), (
+1.23,
-0.01), (
+1.49,
+0.73)
4147(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.40,
+0.00), (
+1.23,
+0.06), (
+1.54,
-0.27)
4148(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.14,
+0.00), (
+1.83,
-0.65)
4149(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.42,
+0.00)
4152call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
4154(
+2.51,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
4155(
-0.43,
+0.68), (
+1.86,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
4156(
+0.13,
+0.12), (
-0.61,
+0.84), (
+1.20,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
4157(
+0.02,
-0.89), (
+0.02,
-1.17), (
-1.02,
-0.06), (
+2.21,
+0.00), (
+0.00,
+0.00)
4158(
-0.17,
+0.20), (
-0.10,
+0.43), (
+0.17,
+0.12), (
-0.79,
-0.28), (
+0.49,
+0.00)
4159call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
4161(
+2.51,
+0.00), (
-0.43,
-0.68), (
+0.13,
-0.12), (
+0.02,
+0.89), (
-0.17,
-0.20)
4162(
-0.43,
+0.68), (
+1.86,
+0.00), (
-0.61,
-0.84), (
+0.02,
+1.17), (
-0.10,
-0.43)
4163(
+0.13,
+0.12), (
-0.61,
+0.84), (
+1.20,
+0.00), (
-1.02,
+0.06), (
+0.17,
-0.12)
4164(
+0.02,
-0.89), (
+0.02,
-1.17), (
-1.02,
-0.06), (
+2.21,
+0.00), (
-0.79,
+0.28)
4165(
-0.17,
+0.20), (
-0.10,
+0.43), (
+0.17,
+0.12), (
-0.79,
-0.28), (
+0.49,
+0.00)
4166mul
= matmul(mat, inv)
4168(
+1.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
-0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
4169(
+0.00,
-0.00), (
+1.00,
-0.00), (
-0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
4170(
+0.00,
-0.00), (
+0.00,
-0.00), (
+1.00,
-0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
4171(
+0.00,
-0.00), (
+0.00,
-0.00), (
-0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
-0.00)
4172(
+0.00,
-0.00), (
-0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
+1.00,
+0.00)
4175call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
4177(
+2.51,
+0.00), (
-0.43,
-0.68), (
+0.13,
-0.12), (
+0.02,
+0.89), (
-0.17,
-0.20)
4178(
+0.00,
+0.00), (
+1.86,
+0.00), (
-0.61,
-0.84), (
+0.02,
+1.17), (
-0.10,
-0.43)
4179(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.20,
+0.00), (
-1.02,
+0.06), (
+0.17,
-0.12)
4180(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+2.21,
+0.00), (
-0.79,
+0.28)
4181(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.49,
+0.00)
4182call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
4184(
+2.51,
+0.00), (
-0.43,
-0.68), (
+0.13,
-0.12), (
+0.02,
+0.89), (
-0.17,
-0.20)
4185(
-0.43,
+0.68), (
+1.86,
+0.00), (
-0.61,
-0.84), (
+0.02,
+1.17), (
-0.10,
-0.43)
4186(
+0.13,
+0.12), (
-0.61,
+0.84), (
+1.20,
+0.00), (
-1.02,
+0.06), (
+0.17,
-0.12)
4187(
+0.02,
-0.89), (
+0.02,
-1.17), (
-1.02,
-0.06), (
+2.21,
+0.00), (
-0.79,
+0.28)
4188(
-0.17,
+0.20), (
-0.10,
+0.43), (
+0.17,
+0.12), (
-0.79,
-0.28), (
+0.49,
+0.00)
4189mul
= matmul(mat, inv)
4191(
+1.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
-0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
4192(
+0.00,
-0.00), (
+1.00,
-0.00), (
-0.00,
+0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
4193(
+0.00,
-0.00), (
+0.00,
-0.00), (
+1.00,
-0.00), (
+0.00,
-0.00), (
-0.00,
+0.00)
4194(
+0.00,
-0.00), (
+0.00,
-0.00), (
-0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
-0.00)
4195(
+0.00,
-0.00), (
-0.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
-0.00), (
+1.00,
+0.00)
4208call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
4211call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
4214mul
= matmul(mat, inv)
4219call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
4222call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
4225mul
= matmul(mat, inv)
4234(
+1.13,
+0.00), (
+1.40,
+0.13), (
+1.92,
+0.82)
4235(
+1.40,
-0.13), (
+3.42,
+0.00), (
+3.83,
+0.29)
4236(
+1.92,
-0.82), (
+3.83,
-0.29), (
+6.53,
+0.00)
4239(
+1.06,
+0.00), (
+1.31,
+0.13), (
+1.81,
+0.77)
4240(
+0.00,
+0.00), (
+1.29,
+0.00), (
+1.05,
-0.39)
4241(
+0.00,
+0.00), (
+0.00,
+0.00), (
+1.19,
+0.00)
4244call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
4246(
+2.83,
+0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
4247(
-0.57,
-0.65), (
+1.13,
+0.00), (
+0.00,
+0.00)
4248(
-0.47,
+0.71), (
-0.58,
-0.21), (
+0.71,
+0.00)
4249call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
4251(
+2.83,
+0.00), (
-0.57,
+0.65), (
-0.47,
-0.71)
4252(
-0.57,
-0.65), (
+1.13,
+0.00), (
-0.58,
+0.21)
4253(
-0.47,
+0.71), (
-0.58,
-0.21), (
+0.71,
+0.00)
4254mul
= matmul(mat, inv)
4256(
+1.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
4257(
+0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
4258(
+0.00,
+0.00), (
-0.00,
+0.00), (
+1.00,
+0.00)
4261call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
4263(
+2.83,
+0.00), (
-0.57,
+0.65), (
-0.47,
-0.71)
4264(
+0.00,
+0.00), (
+1.13,
+0.00), (
-0.58,
+0.21)
4265(
+0.00,
+0.00), (
+0.00,
+0.00), (
+0.71,
+0.00)
4266call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
4268(
+2.83,
+0.00), (
-0.57,
+0.65), (
-0.47,
-0.71)
4269(
-0.57,
-0.65), (
+1.13,
+0.00), (
-0.58,
+0.21)
4270(
-0.47,
+0.71), (
-0.58,
-0.21), (
+0.71,
+0.00)
4271mul
= matmul(mat, inv)
4273(
+1.00,
-0.00), (
+0.00,
+0.00), (
+0.00,
+0.00)
4274(
+0.00,
-0.00), (
+1.00,
+0.00), (
-0.00,
+0.00)
4275(
+0.00,
+0.00), (
-0.00,
+0.00), (
+1.00,
+0.00)
4288call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
4291call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
4294mul
= matmul(mat, inv)
4299call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
4302call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
4305mul
= matmul(mat, inv)
4314(
+1.06,
+0.00), (
+1.93,
+0.85)
4315(
+1.93,
-0.85), (
+7.50,
+0.00)
4318(
+1.03,
+0.00), (
+1.88,
+0.82)
4319(
+0.00,
+0.00), (
+1.82,
+0.00)
4322call setMatInv(inv, chol, auxil
= choUpp, subset
= lowDia)
4324(
+2.15,
+0.00), (
+0.00,
+0.00)
4325(
-0.55,
+0.24), (
+0.30,
+0.00)
4326call setMatCopy(inv(
1:,
2:), rdpack, inv(
2:,
1:), rdpack, lowDia, transHerm)
4328(
+2.15,
+0.00), (
-0.55,
-0.24)
4329(
-0.55,
+0.24), (
+0.30,
+0.00)
4330mul
= matmul(mat, inv)
4332(
+1.00,
-0.00), (
+0.00,
+0.00)
4333(
+0.00,
+0.00), (
+1.00,
+0.00)
4336call setMatInv(inv, chol, auxil
= choUpp, subset
= uppDia)
4338(
+2.15,
+0.00), (
-0.55,
-0.24)
4339(
+0.00,
+0.00), (
+0.30,
+0.00)
4340call setMatCopy(inv(
2:,
1:), rdpack, inv(
1:,
2:), rdpack, uppDia, transHerm)
4342(
+2.15,
+0.00), (
-0.55,
-0.24)
4343(
-0.55,
+0.24), (
+0.30,
+0.00)
4344mul
= matmul(mat, inv)
4346(
+1.00,
-0.00), (
+0.00,
+0.00)
4347(
+0.00,
+0.00), (
+1.00,
+0.00)