Sun Aug 14 10:57:24 2022 r8utp_test(): Python version: 3.6.9 r8utp() handles real upper triangular packed matrices. r8ge_to_r8utp_test(): r8ge_to_r8utp() converts an R8GE matrix to R8UTP format. The R8GE matrix: [[11. 12. 13. 14.] [21. 22. 23. 24.] [31. 32. 33. 34.] [41. 42. 43. 44.] [51. 52. 53. 54.]] The R8UTP matrix: Col: 1 2 3 4 Row 1 : 11 12 13 14 2 : 22 23 24 3 : 33 34 4 : 44 5 : r8utp_det_test(): r8utp_det() computes the determinant of an R8UTP matrix. The matrix A: Col: 1 2 3 4 5 Row 1 : 1 2 4 7 11 2 : 3 5 8 12 3 : 6 9 13 4 : 10 14 5 : 15 Determinant is 2700 r8utp_indicator_test(): r8utp_indicator() sets up an indicator matrix in R8UTP format Matrix rows M = 5 Matrix columns N = 4 The indicator matrix: Col: 1 2 3 4 Row 1 : 11 12 13 14 2 : 22 23 24 3 : 33 34 4 : 44 5 : r8utp_print_test(): r8utp_print() prints an R8UTP matrix. Matrix rows M = 6 Matrix columns N = 4 The R8UTP matrix: Col: 1 2 3 4 Row 1 : 11 12 13 14 2 : 22 23 24 3 : 33 34 4 : 44 5 : 6 : r8utp_print_some_test(): r8utp_print_some() prints some of an R8UTP matrix. Matrix rows M = 4 Matrix columns N = 6 Some of the matrix: Col: 4 5 6 Row 1 : 14 15 26 2 : 24 25 36 3 : 34 35 46 r8utp_random_test(): r8utp_random() randomizes an R8UTP matrix. Matrix order M, N = 5, 4 Matrix A: Col: 1 2 3 4 Row 1 : 0.574997 0.631438 0.394781 0.224604 2 : 0.678738 0.678493 0.757686 3 : 0.343743 0.140983 4 : 0.250241 5 : r8utp_size_test ( ): r8utp_size() determines the size of an m x n r8utp matrix. M N Size Size(check) 4 3 6 6 4 4 10 10 4 6 18 18 r8utp_to_r8ge_test(): r8utp_to_r8ge() converts an R8UTP matrix to R8GE format. The random R8UTP matrix: Col: 1 2 3 4 Row 1 : 0.620183 0.22064 0.747599 0.287799 2 : 0.9275 0.437165 0.457539 3 : 0.304486 0.20393 4 : 0.2806 5 : The R8GE matrix: [[0.62018341 0.22064008 0.74759923 0.2877986 ] [0. 0.92750046 0.4371653 0.4575395 ] [0. 0. 0.30448568 0.20393035] [0. 0. 0. 0.28060008] [0. 0. 0. 0. ]] r8utp_zeros_test(): r8utp_zeros() zeros out space for an R8UTP matrix. Matrix order M, N = 5, 4 Matrix A: Col: 1 2 3 4 Row 1 : 0 0 0 0 2 : 0 0 0 3 : 0 0 4 : 0 5 : r8utp_test(): Normal end of execution. Sun Aug 14 10:57:24 2022