/usr/share/tcltk/tcllib1.14/math/linalg.tcl is in tcllib 1.14-dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 | # linalg.tcl --
# Linear algebra package, based partly on Hume's LA package,
# partly on experiments with various representations of
# matrices. Also the functionality of the BLAS library has
# been taken into account.
#
# General information:
# - The package provides both a high-level general interface and
# a lower-level specific interface for various LA functions
# and tasks.
# - The general procedures perform some checks and then call
# the various specific procedures. The general procedures are
# aimed at robustness and ease of use.
# - The specific procedures do not check anything, they are
# designed for speed. Failure to comply to the interface
# requirements will presumably lead to [expr] errors.
# - Vectors are represented as lists, matrices as lists of
# lists, where the rows are the innermost lists:
#
# / a11 a12 a13 \
# | a21 a22 a23 | == { {a11 a12 a13} {a21 a22 a23} {a31 a32 a33} }
# \ a31 a32 a33 /
#
package require Tcl 8.4
namespace eval ::math::linearalgebra {
# Define the namespace
namespace export dim shape conforming symmetric
namespace export norm norm_one norm_two norm_max normMatrix
namespace export dotproduct unitLengthVector normalizeStat
namespace export axpy axpy_vect axpy_mat crossproduct
namespace export add add_vect add_mat
namespace export sub sub_vect sub_mat
namespace export scale scale_vect scale_mat matmul transpose
namespace export rotate angle choleski
namespace export getrow getcol getelem setrow setcol setelem
namespace export mkVector mkMatrix mkIdentity mkDiagonal
namespace export mkHilbert mkDingdong mkBorder mkFrank
namespace export mkMoler mkWilkinsonW+ mkWilkinsonW-
namespace export solveGauss solveTriangular
namespace export solveGaussBand solveTriangularBand
namespace export solvePGauss
namespace export determineSVD eigenvectorsSVD
namespace export leastSquaresSVD
namespace export orthonormalizeColumns orthonormalizeRows
namespace export show to_LA from_LA
namespace export swaprows swapcols
namespace export dger dgetrf mkRandom mkTriangular
namespace export det largesteigen
}
# dim --
# Return the dimension of an object (scalar, vector or matrix)
# Arguments:
# obj Object like a scalar, vector or matrix
# Result:
# Dimension: 0 for a scalar, 1 for a vector, 2 for a matrix
#
proc ::math::linearalgebra::dim { obj } {
set shape [shape $obj]
if { $shape != 1 } {
return [llength [shape $obj]]
} else {
return 0
}
}
# shape --
# Return the shape of an object (scalar, vector or matrix)
# Arguments:
# obj Object like a scalar, vector or matrix
# Result:
# List of the sizes: 1 for a scalar, number of components
# for a vector, number of rows and columns for a matrix
#
proc ::math::linearalgebra::shape { obj } {
set result [llength $obj]
if { [llength [lindex $obj 0]] <= 1 } {
return $result
} else {
lappend result [llength [lindex $obj 0]]
}
return $result
}
# show --
# Return a string representing the vector or matrix,
# for easy printing
# Arguments:
# obj Object like a scalar, vector or matrix
# format Format to be used (defaults to %6.4f)
# rowsep Separator for rows (defaults to \n)
# colsep Separator for columns (defaults to " ")
# Result:
# String representing the vector or matrix
#
proc ::math::linearalgebra::show { obj {format %6.4f} {rowsep \n} {colsep " "} } {
set result ""
if { [llength [lindex $obj 0]] == 1 } {
foreach v $obj {
append result "[format $format $v]$rowsep"
}
} else {
foreach row $obj {
foreach v $row {
append result "[format $format $v]$colsep"
}
append result $rowsep
}
}
return $result
}
# conforming --
# Determine if two objects (vector or matrix) are conforming
# in shape, rows or for a matrix multiplication
# Arguments:
# type Type of conforming: shape, rows or matmul
# obj1 First object (vector or matrix)
# obj2 Second object (vector or matrix)
# Result:
# 1 if they conform, 0 if not
#
proc ::math::linearalgebra::conforming { type obj1 obj2 } {
set shape1 [shape $obj1]
set shape2 [shape $obj2]
set result 0
if { $type == "shape" } {
set result [expr {[lindex $shape1 0] == [lindex $shape2 0] &&
[lindex $shape1 1] == [lindex $shape2 1]}]
}
if { $type == "rows" } {
set result [expr {[lindex $shape1 0] == [lindex $shape2 0]}]
}
if { $type == "matmul" } {
set result [expr {[lindex $shape1 1] == [lindex $shape2 0]}]
}
return $result
}
# crossproduct --
# Return the "cross product" of two 3D vectors
# Arguments:
# vect1 First vector
# vect2 Second vector
# Result:
# Cross product
#
proc ::math::linearalgebra::crossproduct { vect1 vect2 } {
if { [llength $vect1] == 3 && [llength $vect2] == 3 } {
foreach {v11 v12 v13} $vect1 {v21 v22 v23} $vect2 {break}
return [list \
[expr {$v12*$v23 - $v13*$v22}] \
[expr {$v13*$v21 - $v11*$v23}] \
[expr {$v11*$v22 - $v12*$v21}] ]
} else {
return -code error "Cross-product only defined for 3D vectors"
}
}
# angle --
# Return the "angle" between two vectors (in radians)
# Arguments:
# vect1 First vector
# vect2 Second vector
# Result:
# Angle between the two vectors
#
proc ::math::linearalgebra::angle { vect1 vect2 } {
set dp [dotproduct $vect1 $vect2]
set n1 [norm_two $vect1]
set n2 [norm_two $vect2]
if { $n1 == 0.0 || $n2 == 0.0 } {
return -code error "Angle not defined for null vector"
}
return [expr {acos($dp/$n1/$n2)}]
}
# norm --
# Compute the (1-, 2- or Inf-) norm of a vector
# Arguments:
# vector Vector (list of numbers)
# type Either 1, 2 or max/inf to indicate the type of
# norm (default: 2, the euclidean norm)
# Result:
# The (1-, 2- or Inf-) norm of a vector
# Level-1 BLAS :
# if type = 1, corresponds to DASUM
# if type = 2, corresponds to DNRM2
#
proc ::math::linearalgebra::norm { vector {type 2} } {
if { $type == 2 } {
return [norm_two $vector]
}
if { $type == 1 } {
return [norm_one $vector]
}
if { $type == "max" || $type == "inf" } {
return [norm_max $vector]
}
return -code error "Unknown norm: $type"
}
# norm_one --
# Compute the 1-norm of a vector
# Arguments:
# vector Vector
# Result:
# The 1-norm of a vector
#
proc ::math::linearalgebra::norm_one { vector } {
set sum 0.0
foreach c $vector {
set sum [expr {$sum+abs($c)}]
}
return $sum
}
# norm_two --
# Compute the 2-norm of a vector (euclidean norm)
# Arguments:
# vector Vector
# Result:
# The 2-norm of a vector
# Note:
# Rely on the function hypot() to make this robust
# against overflow and underflow
#
proc ::math::linearalgebra::norm_two { vector } {
set sum 0.0
foreach c $vector {
set sum [expr {hypot($c,$sum)}]
}
return $sum
}
# norm_max --
# Compute the inf-norm of a vector (maximum of its components)
# Arguments:
# vector Vector
# index, optional if non zero, returns a list made of the maximum
# value and the index where that maximum was found.
# if zero, returns the maximum value.
# Result:
# The inf-norm of a vector
# Level-1 BLAS :
# if index!=0, corresponds to IDAMAX
#
proc ::math::linearalgebra::norm_max { vector {index 0}} {
set max [lindex $vector 0]
set imax 0
set i 0
foreach c $vector {
if {[expr {abs($c)>$max}]} then {
set imax $i
set max [expr {abs($c)}]
}
incr i
}
if {$index == 0} then {
set result $max
} else {
set result [list $max $imax]
}
return $result
}
# normMatrix --
# Compute the (1-, 2- or Inf-) norm of a matrix
# Arguments:
# matrix Matrix (list of row vectors)
# type Either 1, 2 or max/inf to indicate the type of
# norm (default: 2, the euclidean norm)
# Result:
# The (1-, 2- or Inf-) norm of the matrix
#
proc ::math::linearalgebra::normMatrix { matrix {type 2} } {
set v {}
foreach row $matrix {
lappend v [norm $row $type]
}
return [norm $v $type]
}
# symmetric --
# Determine if the matrix is symmetric or not
# Arguments:
# matrix Matrix (list of row vectors)
# eps Tolerance (defaults to 1.0e-8)
# Result:
# 1 if symmetric (within the tolerance), 0 if not
#
proc ::math::linearalgebra::symmetric { matrix {eps 1.0e-8} } {
set shape [shape $matrix]
if { [lindex $shape 0] != [lindex $shape 1] } {
return 0
}
set norm_org [normMatrix $matrix]
set norm_asymm [normMatrix [sub $matrix [transpose $matrix]]]
if { $norm_asymm <= $eps*$norm_org } {
return 1
} else {
return 0
}
}
# dotproduct --
# Compute the dot product of two vectors
# Arguments:
# vect1 First vector
# vect2 Second vector
# Result:
# The dot product of the two vectors
# Level-1 BLAS : corresponds to DDOT
#
proc ::math::linearalgebra::dotproduct { vect1 vect2 } {
if { [llength $vect1] != [llength $vect2] } {
return -code error "Vectors must be of equal length"
}
set sum 0.0
foreach c1 $vect1 c2 $vect2 {
set sum [expr {$sum + $c1*$c2}]
}
return $sum
}
# unitLengthVector --
# Normalize a vector so that a length 1 results and return the new vector
# Arguments:
# vector Vector to be normalized
# Result:
# A vector of length 1
#
proc ::math::linearalgebra::unitLengthVector { vector } {
set scale [norm_two $vector]
if { $scale == 0.0 } {
return -code error "Can not normalize a null-vector"
}
return [scale [expr {1.0/$scale}] $vector]
}
# normalizeStat --
# Normalize a matrix or vector in a statistical sense and return the result
# Arguments:
# mv Matrix or vector to be normalized
# Result:
# A matrix or vector whose columns are normalised to have a mean of
# 0 and a standard deviation of 1.
#
proc ::math::linearalgebra::normalizeStat { mv } {
if { [llength [lindex $mv 0]] > 1 } {
set result {}
foreach vector [transpose $mv] {
lappend result [NormalizeStat_vect $vector]
}
return [transpose $result]
} else {
return [NormalizeStat_vect $mv]
}
}
# NormalizeStat_vect --
# Normalize a vector in a statistical sense and return the result
# Arguments:
# v Vector to be normalized
# Result:
# A vector whose elements are normalised to have a mean of
# 0 and a standard deviation of 1. If all coefficients are equal,
# a null-vector is returned.
#
proc ::math::linearalgebra::NormalizeStat_vect { v } {
if { [llength $v] <= 1 } {
return -code error "Vector can not be normalised - too few coefficients"
}
set sum 0.0
set sum2 0.0
set count 0.0
foreach c $v {
set sum [expr {$sum + $c}]
set sum2 [expr {$sum2 + $c*$c}]
set count [expr {$count + 1.0}]
}
set corr [expr {$sum/$count}]
set factor [expr {($sum2-$sum*$sum/$count)/($count-1)}]
if { $factor > 0.0 } {
set factor [expr {1.0/sqrt($factor)}]
} else {
set factor 0.0
}
set result {}
foreach c $v {
lappend result [expr {$factor*($c-$corr)}]
}
return $result
}
# axpy --
# Compute the sum of a scaled vector/matrix and another
# vector/matrix: a*x + y
# Arguments:
# scale Scale factor (a) for the first vector/matrix
# mv1 First vector/matrix (x)
# mv2 Second vector/matrix (y)
# Result:
# The result of a*x+y
# Level-1 BLAS : if mv1 is a vector, corresponds to DAXPY
#
proc ::math::linearalgebra::axpy { scale mv1 mv2 } {
if { [llength [lindex $mv1 0]] > 1 } {
return [axpy_mat $scale $mv1 $mv2]
} else {
return [axpy_vect $scale $mv1 $mv2]
}
}
# axpy_vect --
# Compute the sum of a scaled vector and another vector: a*x + y
# Arguments:
# scale Scale factor (a) for the first vector
# vect1 First vector (x)
# vect2 Second vector (y)
# Result:
# The result of a*x+y
# Level-1 BLAS : corresponds to DAXPY
#
proc ::math::linearalgebra::axpy_vect { scale vect1 vect2 } {
set result {}
foreach c1 $vect1 c2 $vect2 {
lappend result [expr {$scale*$c1+$c2}]
}
return $result
}
# axpy_mat --
# Compute the sum of a scaled matrix and another matrix: a*x + y
# Arguments:
# scale Scale factor (a) for the first matrix
# mat1 First matrix (x)
# mat2 Second matrix (y)
# Result:
# The result of a*x+y
#
proc ::math::linearalgebra::axpy_mat { scale mat1 mat2 } {
set result {}
foreach row1 $mat1 row2 $mat2 {
lappend result [axpy_vect $scale $row1 $row2]
}
return $result
}
# add --
# Compute the sum of two vectors/matrices
# Arguments:
# mv1 First vector/matrix (x)
# mv2 Second vector/matrix (y)
# Result:
# The result of x+y
#
proc ::math::linearalgebra::add { mv1 mv2 } {
if { [llength [lindex $mv1 0]] > 1 } {
return [add_mat $mv1 $mv2]
} else {
return [add_vect $mv1 $mv2]
}
}
# add_vect --
# Compute the sum of two vectors
# Arguments:
# vect1 First vector (x)
# vect2 Second vector (y)
# Result:
# The result of x+y
#
proc ::math::linearalgebra::add_vect { vect1 vect2 } {
set result {}
foreach c1 $vect1 c2 $vect2 {
lappend result [expr {$c1+$c2}]
}
return $result
}
# add_mat --
# Compute the sum of two matrices
# Arguments:
# mat1 First matrix (x)
# mat2 Second matrix (y)
# Result:
# The result of x+y
#
proc ::math::linearalgebra::add_mat { mat1 mat2 } {
set result {}
foreach row1 $mat1 row2 $mat2 {
lappend result [add_vect $row1 $row2]
}
return $result
}
# sub --
# Compute the difference of two vectors/matrices
# Arguments:
# mv1 First vector/matrix (x)
# mv2 Second vector/matrix (y)
# Result:
# The result of x-y
#
proc ::math::linearalgebra::sub { mv1 mv2 } {
if { [llength [lindex $mv1 0]] > 0 } {
return [sub_mat $mv1 $mv2]
} else {
return [sub_vect $mv1 $mv2]
}
}
# sub_vect --
# Compute the difference of two vectors
# Arguments:
# vect1 First vector (x)
# vect2 Second vector (y)
# Result:
# The result of x-y
#
proc ::math::linearalgebra::sub_vect { vect1 vect2 } {
set result {}
foreach c1 $vect1 c2 $vect2 {
lappend result [expr {$c1-$c2}]
}
return $result
}
# sub_mat --
# Compute the difference of two matrices
# Arguments:
# mat1 First matrix (x)
# mat2 Second matrix (y)
# Result:
# The result of x-y
#
proc ::math::linearalgebra::sub_mat { mat1 mat2 } {
set result {}
foreach row1 $mat1 row2 $mat2 {
lappend result [sub_vect $row1 $row2]
}
return $result
}
# scale --
# Scale a vector or a matrix
# Arguments:
# scale Scale factor (scalar; a)
# mv Vector/matrix (x)
# Result:
# The result of a*x
# Level-1 BLAS : if mv is a vector, corresponds to DSCAL
#
proc ::math::linearalgebra::scale { scale mv } {
if { [llength [lindex $mv 0]] > 1 } {
return [scale_mat $scale $mv]
} else {
return [scale_vect $scale $mv]
}
}
# scale_vect --
# Scale a vector
# Arguments:
# scale Scale factor to apply (a)
# vect Vector to be scaled (x)
# Result:
# The result of a*x
# Level-1 BLAS : corresponds to DSCAL
#
proc ::math::linearalgebra::scale_vect { scale vect } {
set result {}
foreach c $vect {
lappend result [expr {$scale*$c}]
}
return $result
}
# scale_mat --
# Scale a matrix
# Arguments:
# scale Scale factor to apply
# mat Matrix to be scaled
# Result:
# The result of x+y
#
proc ::math::linearalgebra::scale_mat { scale mat } {
set result {}
foreach row $mat {
lappend result [scale_vect $scale $row]
}
return $result
}
# rotate --
# Apply a planar rotation to two vectors
# Arguments:
# c Cosine of the angle
# s Sine of the angle
# vect1 First vector (x)
# vect2 Second vector (y)
# Result:
# A list of two elements: c*x-s*y and s*x+c*y
#
proc ::math::linearalgebra::rotate { c s vect1 vect2 } {
set result1 {}
set result2 {}
foreach v1 $vect1 v2 $vect2 {
lappend result1 [expr {$c*$v1-$s*$v2}]
lappend result2 [expr {$s*$v1+$c*$v2}]
}
return [list $result1 $result2]
}
# transpose --
# Transpose a matrix
# Arguments:
# matrix Matrix to be transposed
# Result:
# The transposed matrix
# Note:
# The second transpose implementation is faster on large
# matrices (100x100 say), there is no significant difference
# on small ones (10x10 say).
#
#
proc ::math::linearalgebra::transpose_old { matrix } {
set row {}
set transpose {}
foreach c [lindex $matrix 0] {
lappend row 0.0
}
foreach r $matrix {
lappend transpose $row
}
set nr 0
foreach r $matrix {
set nc 0
foreach c $r {
lset transpose $nc $nr $c
incr nc
}
incr nr
}
return $transpose
}
proc ::math::linearalgebra::transpose { matrix } {
set transpose {}
set c 0
foreach col [lindex $matrix 0] {
set newrow {}
foreach row $matrix {
lappend newrow [lindex $row $c]
}
lappend transpose $newrow
incr c
}
return $transpose
}
# MorV --
# Identify if the object is a row/column vector or a matrix
# Arguments:
# obj Object to be examined
# Result:
# The letter R, C or M depending on the shape
# (just to make it all work fine: S for scalar)
# Note:
# Private procedure to fix a bug in matmul
#
proc ::math::linearalgebra::MorV { obj } {
if { [llength $obj] > 1 } {
if { [llength [lindex $obj 0]] > 1 } {
return "M"
} else {
return "C"
}
} else {
if { [llength [lindex $obj 0]] > 1 } {
return "R"
} else {
return "S"
}
}
}
# matmul --
# Multiply a vector/matrix with another vector/matrix
# Arguments:
# mv1 First vector/matrix (x)
# mv2 Second vector/matrix (y)
# Result:
# The result of x*y
#
proc ::math::linearalgebra::matmul_org { mv1 mv2 } {
if { [llength [lindex $mv1 0]] > 1 } {
if { [llength [lindex $mv2 0]] > 1 } {
return [matmul_mm $mv1 $mv2]
} else {
return [matmul_mv $mv1 $mv2]
}
} else {
if { [llength [lindex $mv2 0]] > 1 } {
return [matmul_vm $mv1 $mv2]
} else {
return [matmul_vv $mv1 $mv2]
}
}
}
proc ::math::linearalgebra::matmul { mv1 mv2 } {
switch -exact -- "[MorV $mv1][MorV $mv2]" {
"MM" {
return [matmul_mm $mv1 $mv2]
}
"MC" {
return [matmul_mv $mv1 $mv2]
}
"MR" {
return -code error "Can not multiply a matrix with a row vector - wrong order"
}
"RM" {
return [matmul_vm [transpose $mv1] $mv2]
}
"RC" {
return [dotproduct [transpose $mv1] $mv2]
}
"RR" {
return -code error "Can not multiply a matrix with a row vector - wrong order"
}
"CM" {
return [transpose [matmul_vm $mv1 $mv2]]
}
"CR" {
return [matmul_vv $mv1 [transpose $mv2]]
}
"CC" {
return [matmul_vv $mv1 $mv2]
}
"SS" {
return [expr {$mv1 * $mv2}]
}
default {
return -code error "Can not use a scalar object"
}
}
}
# matmul_mv --
# Multiply a matrix and a column vector
# Arguments:
# matrix Matrix (applied left: A)
# vector Vector (interpreted as column vector: x)
# Result:
# The vector A*x
# Level-2 BLAS : corresponds to DTRMV
#
proc ::math::linearalgebra::matmul_mv { matrix vector } {
set newvect {}
foreach row $matrix {
set sum 0.0
foreach v $vector c $row {
set sum [expr {$sum+$v*$c}]
}
lappend newvect $sum
}
return $newvect
}
# matmul_vm --
# Multiply a row vector with a matrix
# Arguments:
# vector Vector (interpreted as row vector: x)
# matrix Matrix (applied right: A)
# Result:
# The vector xtrans*A = Atrans*x
#
proc ::math::linearalgebra::matmul_vm { vector matrix } {
return [transpose [matmul_mv [transpose $matrix] $vector]]
}
# matmul_vv --
# Multiply two vectors to obtain a matrix
# Arguments:
# vect1 First vector (column vector, x)
# vect2 Second vector (row vector, y)
# Result:
# The "outer product" x*ytrans
#
proc ::math::linearalgebra::matmul_vv { vect1 vect2 } {
set newmat {}
foreach v1 $vect1 {
set newrow {}
foreach v2 $vect2 {
lappend newrow [expr {$v1*$v2}]
}
lappend newmat $newrow
}
return $newmat
}
# matmul_mm --
# Multiply two matrices
# Arguments:
# mat1 First matrix (A)
# mat2 Second matrix (B)
# Result:
# The matrix product A*B
# Note:
# By transposing matrix B we can access the columns
# as rows - much easier and quicker, as they are
# the elements of the outermost list.
# Level-3 BLAS :
# corresponds to DGEMM (alpha op(A) op(B) + beta C) when alpha=1, op(X)=X and beta=0
# corresponds to DTRMM (alpha op(A) B) when alpha = 1, op(X)=X
#
proc ::math::linearalgebra::matmul_mm { mat1 mat2 } {
set newmat {}
set tmat [transpose $mat2]
foreach row1 $mat1 {
set newrow {}
foreach row2 $tmat {
lappend newrow [dotproduct $row1 $row2]
}
lappend newmat $newrow
}
return $newmat
}
# mkVector --
# Make a vector of a given size
# Arguments:
# ndim Dimension of the vector
# value Default value for all elements (default: 0.0)
# Result:
# A list with ndim elements, representing a vector
#
proc ::math::linearalgebra::mkVector { ndim {value 0.0} } {
set result {}
while { $ndim > 0 } {
lappend result $value
incr ndim -1
}
return $result
}
# mkUnitVector --
# Make a unit vector in a given direction
# Arguments:
# ndim Dimension of the vector
# dir The direction (0, ... ndim-1)
# Result:
# A list with ndim elements, representing a unit vector
#
proc ::math::linearalgebra::mkUnitVector { ndim dir } {
if { $dir < 0 || $dir >= $ndim } {
return -code error "Invalid direction for unit vector - $dir"
} else {
set result [mkVector $ndim]
lset result $dir 1.0
}
return $result
}
# mkMatrix --
# Make a matrix of a given size
# Arguments:
# nrows Number of rows
# ncols Number of columns
# value Default value for all elements (default: 0.0)
# Result:
# A nested list, representing an nrows x ncols matrix
#
proc ::math::linearalgebra::mkMatrix { nrows ncols {value 0.0} } {
set result {}
while { $nrows > 0 } {
lappend result [mkVector $ncols $value]
incr nrows -1
}
return $result
}
# mkIdent --
# Make an identity matrix of a given size
# Arguments:
# size Number of rows/columns
# Result:
# A nested list, representing an size x size identity matrix
#
proc ::math::linearalgebra::mkIdentity { size } {
set result [mkMatrix $size $size 0.0]
while { $size > 0 } {
incr size -1
lset result $size $size 1.0
}
return $result
}
# mkDiagonal --
# Make a diagonal matrix of a given size
# Arguments:
# diag List of values to appear on the diagonal
#
# Result:
# A nested list, representing a diagonal matrix
#
proc ::math::linearalgebra::mkDiagonal { diag } {
set size [llength $diag]
set result [mkMatrix $size $size 0.0]
while { $size > 0 } {
incr size -1
lset result $size $size [lindex $diag $size]
}
return $result
}
# mkHilbert --
# Make a Hilbert matrix of a given size
# Arguments:
# size Size of the matrix
# Result:
# A nested list, representing a Hilbert matrix
# Notes:
# Hilbert matrices are very ill-conditioned wrt
# eigenvalue/eigenvector problems. Therefore they
# are good candidates for testing the accuracy
# of algorithms and implementations.
#
proc ::math::linearalgebra::mkHilbert { size } {
set result {}
for { set j 0 } { $j < $size } { incr j } {
set row {}
for { set i 0 } { $i < $size } { incr i } {
lappend row [expr {1.0/($i+$j+1.0)}]
}
lappend result $row
}
return $result
}
# mkDingdong --
# Make a Dingdong matrix of a given size
# Arguments:
# size Size of the matrix
# Result:
# A nested list, representing a Dingdong matrix
# Notes:
# Dingdong matrices are imprecisely represented,
# but have the property of being very stable in
# such algorithms as Gauss elimination.
#
proc ::math::linearalgebra::mkDingdong { size } {
set result {}
for { set j 0 } { $j < $size } { incr j } {
set row {}
for { set i 0 } { $i < $size } { incr i } {
lappend row [expr {0.5/($size-$i-$j-0.5)}]
}
lappend result $row
}
return $result
}
# mkOnes --
# Make a square matrix consisting of ones
# Arguments:
# size Number of rows/columns
# Result:
# A nested list, representing a size x size matrix,
# filled with 1.0
#
proc ::math::linearalgebra::mkOnes { size } {
return [mkMatrix $size $size 1.0]
}
# mkMoler --
# Make a Moler matrix
# Arguments:
# size Size of the matrix
# Result:
# A nested list, representing a Moler matrix
# Notes:
# Moler matrices have a very simple Choleski
# decomposition. It has one small eigenvalue
# and it can easily upset elimination methods
# for systems of linear equations
#
proc ::math::linearalgebra::mkMoler { size } {
set result {}
for { set j 0 } { $j < $size } { incr j } {
set row {}
for { set i 0 } { $i < $size } { incr i } {
if { $i == $j } {
lappend row [expr {$i+1}]
} else {
lappend row [expr {($i>$j?$j:$i)-1.0}]
}
}
lappend result $row
}
return $result
}
# mkFrank --
# Make a Frank matrix
# Arguments:
# size Size of the matrix
# Result:
# A nested list, representing a Frank matrix
#
proc ::math::linearalgebra::mkFrank { size } {
set result {}
for { set j 0 } { $j < $size } { incr j } {
set row {}
for { set i 0 } { $i < $size } { incr i } {
lappend row [expr {($i>$j?$j:$i)-2.0}]
}
lappend result $row
}
return $result
}
# mkBorder --
# Make a bordered matrix
# Arguments:
# size Size of the matrix
# Result:
# A nested list, representing a bordered matrix
# Note:
# This matrix has size-2 eigenvalues at 1.
#
proc ::math::linearalgebra::mkBorder { size } {
set result {}
for { set j 0 } { $j < $size } { incr j } {
set row {}
for { set i 0 } { $i < $size } { incr i } {
set entry 0.0
if { $i == $j } {
set entry 1.0
} elseif { $j != $size-1 && $i == $size-1 } {
set entry [expr {pow(2.0,-$j)}]
} elseif { $i != $size-1 && $j == $size-1 } {
set entry [expr {pow(2.0,-$i)}]
} else {
set entry 0.0
}
lappend row $entry
}
lappend result $row
}
return $result
}
# mkWilkinsonW+ --
# Make a Wilkinson W+ matrix
# Arguments:
# size Size of the matrix
# Result:
# A nested list, representing a Wilkinson W+ matrix
# Note:
# This kind of matrix has pairs of eigenvalues that
# are very close together. Usually the order is odd.
#
proc ::math::linearalgebra::mkWilkinsonW+ { size } {
set result {}
for { set j 0 } { $j < $size } { incr j } {
set row {}
for { set i 0 } { $i < $size } { incr i } {
if { $i == $j } {
# int(n/2) + 1 - min(i,n-i+1)
set min [expr {(($i+1)>$size-($i+1)+1? $size-($i+1)+1 : ($i+1))}]
set entry [expr {int($size/2) + 1 - $min}]
} elseif { $i == $j+1 || $i+1 == $j } {
set entry 1
} else {
set entry 0.0
}
lappend row $entry
}
lappend result $row
}
return $result
}
# mkWilkinsonW- --
# Make a Wilkinson W- matrix
# Arguments:
# size Size of the matrix
# Result:
# A nested list, representing a Wilkinson W- matrix
# Note:
# This kind of matrix has pairs of eigenvalues with
# opposite signs (if the order is odd).
#
proc ::math::linearalgebra::mkWilkinsonW- { size } {
set result {}
for { set j 0 } { $j < $size } { incr j } {
set row {}
for { set i 0 } { $i < $size } { incr i } {
if { $i == $j } {
set entry [expr {int($size/2) + 1 - ($i+1)}]
} elseif { $i == $j+1 || $i+1 == $j } {
set entry 1
} else {
set entry 0.0
}
lappend row $entry
}
lappend result $row
}
return $result
}
# mkRandom --
# Make a square matrix consisting of random numbers
# Arguments:
# size Number of rows/columns
# Result:
# A nested list, representing a size x size matrix,
# filled with random numbers
#
proc ::math::linearalgebra::mkRandom { size } {
set result {}
for { set j 0 } { $j < $size } { incr j } {
set row {}
for { set i 0 } { $i < $size } { incr i } {
lappend row [expr {rand()}]
}
lappend result $row
}
return $result
}
# mkTriangular --
# Make a triangular matrix consisting of a constant
# Arguments:
# size Number of rows/columns
# uplo U if the matrix is upper triangular (default), L if the
# matrix is lower triangular.
# value Default value for all elements (default: 0.0)
# Result:
# A nested list, representing a size x size matrix,
# filled with random numbers
#
proc ::math::linearalgebra::mkTriangular { size {uplo "U"} {value 1.0}} {
switch -- $uplo {
"U" {
set result {}
for { set j 0 } { $j < $size } { incr j } {
set row {}
for { set i 0 } { $i < $size } { incr i } {
if {$i<$j} then {
lappend row 0.
} else {
lappend row $value
}
}
lappend result $row
}
}
"L" {
set result {}
for { set j 0 } { $j < $size } { incr j } {
set row {}
for { set i 0 } { $i < $size } { incr i } {
if {$i>$j} then {
lappend row 0.
} else {
lappend row $value
}
}
lappend result $row
}
}
default {
error "Unknown value for parameter uplo : $uplo"
}
}
return $result
}
# getrow --
# Get the specified row from a matrix
# Arguments:
# matrix Matrix in question
# row Index of the row
# imin Minimum index of the column (default 0)
# imax Maximum index of the column (default ncols-1)
#
# Result:
# A list with the values on the requested row
#
proc ::math::linearalgebra::getrow { matrix row {imin 0} {imax ""}} {
if {$imax==""} then {
foreach {nrows ncols} [shape $matrix] {break}
if {$ncols==""} then {
# the matrix is a vector
set imax 0
} else {
set imax [expr {$ncols - 1}]
}
}
set row [lindex $matrix $row]
return [lrange $row $imin $imax]
}
# setrow --
# Set the specified row in a matrix
# Arguments:
# matrix _Name_ of matrix in question
# row Index of the row
# newvalues New values for the row
# imin Minimum column index (default 0)
# imax Maximum column index (default ncols-1)
#
# Result:
# Updated matrix
# Side effect:
# The matrix is updated
#
proc ::math::linearalgebra::setrow { matrix row newvalues {imin 0} {imax ""}} {
upvar $matrix mat
if {$imax==""} then {
foreach {nrows ncols} [shape $mat] {break}
if {$ncols==""} then {
# the matrix is a vector
set imax 0
} else {
set imax [expr {$ncols - 1}]
}
}
set icol $imin
foreach value $newvalues {
lset mat $row $icol $value
incr icol
if {$icol>$imax} then {
break
}
}
return $mat
}
# getcol --
# Get the specified column from a matrix
# Arguments:
# matrix Matrix in question
# col Index of the column
# imin Minimum row index (default 0)
# imax Minimum row index (default nrows-1)
#
# Result:
# A list with the values on the requested column
#
proc ::math::linearalgebra::getcol { matrix col {imin 0} {imax ""}} {
if {$imax==""} then {
set nrows [llength $matrix]
set imax [expr {$nrows - 1}]
}
set result {}
set iline 0
foreach row $matrix {
if {$iline>=$imin && $iline<=$imax} then {
lappend result [lindex $row $col]
}
incr iline
}
return $result
}
# setcol --
# Set the specified column in a matrix
# Arguments:
# matrix _Name_ of matrix in question
# col Index of the column
# newvalues New values for the column
# imin Minimum row index (default 0)
# imax Minimum row index (default nrows-1)
#
# Result:
# Updated matrix
# Side effect:
# The matrix is updated
#
proc ::math::linearalgebra::setcol { matrix col newvalues {imin 0} {imax ""}} {
upvar $matrix mat
if {$imax==""} then {
set nrows [llength $mat]
set imax [expr {$nrows - 1}]
}
set index 0
for { set i $imin } { $i <= $imax } { incr i } {
lset mat $i $col [lindex $newvalues $index]
incr index
}
return $mat
}
# getelem --
# Get the specified element (row,column) from a matrix/vector
# Arguments:
# matrix Matrix in question
# row Index of the row
# col Index of the column (not present for vectors)
#
# Result:
# The matrix element (row,column)
#
proc ::math::linearalgebra::getelem { matrix row {col {}} } {
if { $col != {} } {
lindex $matrix $row $col
} else {
lindex $matrix $row
}
}
# setelem --
# Set the specified element (row,column) in a matrix or vector
# Arguments:
# matrix _Name_ of matrix/vector in question
# row Index of the row
# col Index of the column/new value
# newvalue New value for the element (not present for vectors)
#
# Result:
# Updated matrix
# Side effect:
# The matrix is updated
#
proc ::math::linearalgebra::setelem { matrix row col {newvalue {}} } {
upvar $matrix mat
if { $newvalue != {} } {
lset mat $row $col $newvalue
} else {
lset mat $row $col
}
return $mat
}
# swaprows --
# Swap two rows of a matrix
# Arguments:
# matrix Matrix defining the coefficients
# irow1 Index of first row
# irow2 Index of second row
# imin Minimum column index (default 0)
# imax Maximum column index (default ncols-1)
#
# Result:
# The matrix with the two rows swaped.
#
proc ::math::linearalgebra::swaprows { matrix irow1 irow2 {imin 0} {imax ""}} {
upvar $matrix mat
#swaprows1 mat $irow1 $irow2 $imin $imax
swaprows2 mat $irow1 $irow2 $imin $imax
}
proc ::math::linearalgebra::swaprows1 { matrix irow1 irow2 {imin 0} {imax ""}} {
upvar $matrix mat
if {$imax==""} then {
foreach {nrows ncols} [shape $mat] {break}
if {$ncols==""} then {
# the matrix is a vector
set imax 0
} else {
set imax [expr {$ncols - 1}]
}
}
set row1 [getrow $mat $irow1 $imin $imax]
set row2 [getrow $mat $irow2 $imin $imax]
setrow mat $irow1 $row2 $imin $imax
setrow mat $irow2 $row1 $imin $imax
return $mat
}
proc ::math::linearalgebra::swaprows2 { matrix irow1 irow2 {imin 0} {imax ""}} {
upvar $matrix mat
if {$imax==""} then {
foreach {nrows ncols} [shape $mat] {break}
if {$ncols==""} then {
# the matrix is a vector
set imax 0
} else {
set imax [expr {$ncols - 1}]
}
}
set row1 [lrange [lindex $mat $irow1] $imin $imax]
set row2 [lrange [lindex $mat $irow2] $imin $imax]
setrow mat $irow1 $row2 $imin $imax
setrow mat $irow2 $row1 $imin $imax
return $mat
}
# swapcols --
# Swap two cols of a matrix
# Arguments:
# matrix Matrix defining the coefficients
# icol1 Index of first column
# icol2 Index of second column
# imin Minimum row index (default 0)
# imax Minimum row index (default nrows-1)
#
# Result:
# The matrix with the two columns swaped.
#
proc ::math::linearalgebra::swapcols { matrix icol1 icol2 {imin 0} {imax ""}} {
upvar $matrix mat
if {$imax==""} then {
set nrows [llength $mat]
set imax [expr {$nrows - 1}]
}
set col1 [getcol $mat $icol1 $imin $imax]
set col2 [getcol $mat $icol2 $imin $imax]
setcol mat $icol1 $col2 $imin $imax
setcol mat $icol2 $col1 $imin $imax
return $mat
}
# solveGauss --
# Solve a system of linear equations using Gauss elimination
# Arguments:
# matrix Matrix defining the coefficients
# bvect Right-hand side (may be several columns)
#
# Result:
# Solution of the system or an error in case of singularity
# LAPACK : corresponds to DGETRS, without row interchanges
#
proc ::math::linearalgebra::solveGauss { matrix bvect } {
set norows [llength $matrix]
set nocols $norows
for { set i 0 } { $i < $nocols } { incr i } {
set sweep_row [getrow $matrix $i]
set bvect_sweep [getrow $bvect $i]
# No pivoting yet
set sweep_fact [expr {double([lindex $sweep_row $i])}]
for { set j [expr {$i+1}] } { $j < $norows } { incr j } {
set current_row [getrow $matrix $j]
set bvect_current [getrow $bvect $j]
set factor [expr {-[lindex $current_row $i]/$sweep_fact}]
lset matrix $j [axpy_vect $factor $sweep_row $current_row]
lset bvect $j [axpy_vect $factor $bvect_sweep $bvect_current]
}
}
return [solveTriangular $matrix $bvect]
}
# solvePGauss --
# Solve a system of linear equations using Gauss elimination
# with partial pivoting
# Arguments:
# matrix Matrix defining the coefficients
# bvect Right-hand side (may be several columns)
#
# Result:
# Solution of the system or an error in case of singularity
# LAPACK : corresponds to DGETRS
#
proc ::math::linearalgebra::solvePGauss { matrix bvect } {
set ipiv [dgetrf matrix]
set norows [llength $matrix]
set nm1 [expr {$norows - 1}]
# Perform all permutations on b
for { set k 0 } { $k < $nm1 } { incr k } {
# Swap b(k) and b(mu) with mu = P(k)
set tmp [lindex $bvect $k]
set mu [lindex $ipiv $k]
setrow bvect $k [lindex $bvect $mu]
setrow bvect $mu $tmp
}
# Perform forward substitution
for { set k 0 } { $k < $nm1 } { incr k } {
set bk [lindex $bvect $k]
# Substitution
for { set iline [expr {$k+1}] } { $iline < $norows } { incr iline } {
set aik [lindex $matrix $iline $k]
set maik [expr {-1. * $aik}]
set bi [lindex $bvect $iline]
setrow bvect $iline [axpy $maik $bk $bi]
}
}
# Perform backward substitution
return [solveTriangular $matrix $bvect]
}
# solveTriangular --
# Solve a system of linear equations where the matrix is
# upper-triangular
# Arguments:
# matrix Matrix defining the coefficients
# bvect Right-hand side (may be several columns)
# uplo U if the matrix is upper triangular (default), L if the
# matrix is lower triangular.
#
# Result:
# Solution of the system or an error in case of singularity
# LAPACK : corresponds to DTPTRS, but in the current command, the matrix
# is in regular format (unpacked).
#
proc ::math::linearalgebra::solveTriangular { matrix bvect {uplo "U"}} {
set norows [llength $matrix]
set nocols $norows
switch -- $uplo {
"U" {
for { set i [expr {$norows-1}] } { $i >= 0 } { incr i -1 } {
set sweep_row [getrow $matrix $i]
set bvect_sweep [getrow $bvect $i]
set sweep_fact [expr {double([lindex $sweep_row $i])}]
set norm_fact [expr {1.0/$sweep_fact}]
lset bvect $i [scale $norm_fact $bvect_sweep]
for { set j [expr {$i-1}] } { $j >= 0 } { incr j -1 } {
set current_row [getrow $matrix $j]
set bvect_current [getrow $bvect $j]
set factor [expr {-[lindex $current_row $i]/$sweep_fact}]
lset bvect $j [axpy_vect $factor $bvect_sweep $bvect_current]
}
}
}
"L" {
for { set i 0 } { $i < $norows } { incr i } {
set sweep_row [getrow $matrix $i]
set bvect_sweep [getrow $bvect $i]
set sweep_fact [expr {double([lindex $sweep_row $i])}]
set norm_fact [expr {1.0/$sweep_fact}]
lset bvect $i [scale $norm_fact $bvect_sweep]
for { set j 0 } { $j < $i } { incr j } {
set bvect_current [getrow $bvect $i]
set bvect_sweep [getrow $bvect $j]
set factor [lindex $sweep_row $j]
set factor [expr { -1. * $factor * $norm_fact }]
lset bvect $i [axpy_vect $factor $bvect_sweep $bvect_current]
}
}
}
default {
error "Unknown value for parameter uplo : $uplo"
}
}
return $bvect
}
# solveGaussBand --
# Solve a system of linear equations using Gauss elimination,
# where the matrix is stored as a band matrix.
# Arguments:
# matrix Matrix defining the coefficients (in band form)
# bvect Right-hand side (may be several columns)
#
# Result:
# Solution of the system or an error in case of singularity
#
proc ::math::linearalgebra::solveGaussBand { matrix bvect } {
set norows [llength $matrix]
set nocols $norows
set nodiags [llength [lindex $matrix 0]]
set lowdiags [expr {($nodiags-1)/2}]
for { set i 0 } { $i < $nocols } { incr i } {
set sweep_row [getrow $matrix $i]
set bvect_sweep [getrow $bvect $i]
set sweep_fact [lindex $sweep_row [expr {$lowdiags-$i}]]
for { set j [expr {$i+1}] } { $j <= $lowdiags } { incr j } {
set sweep_row [concat [lrange $sweep_row 1 end] 0.0]
set current_row [getrow $matrix $j]
set bvect_current [getrow $bvect $j]
set factor [expr {-[lindex $current_row $i]/$sweep_fact}]
lset matrix $j [axpy_vect $factor $sweep_row $current_row]
lset bvect $j [axpy_vect $factor $bvect_sweep $bvect_current]
}
}
return [solveTriangularBand $matrix $bvect]
}
# solveTriangularBand --
# Solve a system of linear equations where the matrix is
# upper-triangular (stored as a band matrix)
# Arguments:
# matrix Matrix defining the coefficients (in band form)
# bvect Right-hand side (may be several columns)
#
# Result:
# Solution of the system or an error in case of singularity
#
proc ::math::linearalgebra::solveTriangularBand { matrix bvect } {
set norows [llength $matrix]
set nocols $norows
set nodiags [llength [lindex $matrix 0]]
set uppdiags [expr {($nodiags-1)/2}]
set middle [expr {($nodiags-1)/2}]
for { set i [expr {$norows-1}] } { $i >= 0 } { incr i -1 } {
set sweep_row [getrow $matrix $i]
set bvect_sweep [getrow $bvect $i]
set sweep_fact [lindex $sweep_row $middle]
set norm_fact [expr {1.0/$sweep_fact}]
lset bvect $i [scale $norm_fact $bvect_sweep]
for { set j [expr {$i-1}] } { $j >= $i-$middle && $j >= 0 } \
{ incr j -1 } {
set current_row [getrow $matrix $j]
set bvect_current [getrow $bvect $j]
set k [expr {$i-$middle}]
set factor [expr {-[lindex $current_row $k]/$sweep_fact}]
lset bvect $j [axpy_vect $factor $bvect_sweep $bvect_current]
}
}
return $bvect
}
# determineSVD --
# Determine the singular value decomposition of a matrix
# Arguments:
# A Matrix to be examined
# epsilon Tolerance for the procedure (defaults to 2.3e-16)
#
# Result:
# List of the three elements U, S and V, where:
# U, V orthogonal matrices, S a diagonal matrix (here a vector)
# such that A = USVt
# Note:
# This is taken directly from Hume's LA package, and adjusted
# to fit the different matrix format. Also changes are applied
# that can be found in the second edition of Nash's book
# "Compact numerical methods for computers"
#
# To be done: transpose the algorithm so that we can work
# on rows, rather than columns
#
proc ::math::linearalgebra::determineSVD { A {epsilon 2.3e-16} } {
foreach {m n} [shape $A] {break}
set tolerance [expr {$epsilon * $epsilon* $m * $n}]
set V [mkIdentity $n]
#
# Top of the iteration
#
set count 1
for {set isweep 0} {$isweep < 30 && $count > 0} {incr isweep} {
set count [expr {$n*($n-1)/2}] ;# count of rotations in a sweep
for {set j 0} {$j < [expr {$n-1}]} {incr j} {
for {set k [expr {$j+1}]} {$k < $n} {incr k} {
set p [set q [set r 0.0]]
for {set i 0} {$i < $m} {incr i} {
set Aij [lindex $A $i $j]
set Aik [lindex $A $i $k]
set p [expr {$p + $Aij*$Aik}]
set q [expr {$q + $Aij*$Aij}]
set r [expr {$r + $Aik*$Aik}]
}
if { $q < $r } {
set c 0.0
set s 1.0
} elseif { $q * $r == 0.0 } {
# Underflow of small elements
incr count -1
continue
} elseif { ($p*$p)/($q*$r) < $tolerance } {
# Cols j,k are orthogonal
incr count -1
continue
} else {
set q [expr {$q-$r}]
set v [expr {sqrt(4.0*$p*$p + $q*$q)}]
set c [expr {sqrt(($v+$q)/(2.0*$v))}]
set s [expr {-$p/($v*$c)}]
# s == sine of rotation angle, c == cosine
# Note: -s in comparison with original LA!
}
#
# Rotation of A
#
set colj [getcol $A $j]
set colk [getcol $A $k]
foreach {colj colk} [rotate $c $s $colj $colk] {break}
setcol A $j $colj
setcol A $k $colk
#
# Rotation of V
#
set colj [getcol $V $j]
set colk [getcol $V $k]
foreach {colj colk} [rotate $c $s $colj $colk] {break}
setcol V $j $colj
setcol V $k $colk
} ;#k
} ;# j
#puts "pass=$isweep skipped rotations=$count"
} ;# isweep
set S {}
for {set j 0} {$j < $n} {incr j} {
set q [norm_two [getcol $A $j]]
lappend S $q
if { $q >= $tolerance } {
set newcol [scale [expr {1.0/$q}] [getcol $A $j]]
setcol A $j $newcol
}
} ;# j
#
# Prepare the output
#
set U $A
if { $m < $n } {
set U {}
incr m -1
foreach row $A {
lappend U [lrange $row 0 $m]
}
puts $U
}
return [list $U $S $V]
}
# eigenvectorsSVD --
# Determine the eigenvectors and eigenvalues of a real
# symmetric matrix via the SVD
# Arguments:
# A Matrix to be examined
# eps Tolerance for the procedure (defaults to 2.3e-16)
#
# Result:
# List of the matrix of eigenvectors and the vector of corresponding
# eigenvalues
# Note:
# This is taken directly from Hume's LA package, and adjusted
# to fit the different matrix format. Also changes are applied
# that can be found in the second edition of Nash's book
# "Compact numerical methods for computers"
#
proc ::math::linearalgebra::eigenvectorsSVD { A {eps 2.3e-16} } {
foreach {m n} [shape $A] {break}
if { $m != $n } {
return -code error "Expected a square matrix"
}
#
# Determine the shift h so that the matrix A+hI is positive
# definite (the Gershgorin region)
#
set h {}
set i 0
foreach row $A {
set aii [lindex $row $i]
set sum [expr {2.0*abs($aii) - [norm_one $row]}]
incr i
if { $h == {} || $sum < $h } {
set h $sum
}
}
if { $h <= $eps } {
set h [expr {$h - sqrt($eps)}]
# try to make smallest eigenvalue positive and not too small
set A [sub $A [scale_mat $h [mkIdentity $m]]]
} else {
set h 0.0
}
#
# Determine the SVD decomposition: this holds the
# eigenvectors and eigenvalues
#
foreach {U S V} [determineSVD $A $eps] {break}
#
# Rescale and flip signs if all negative or zero
#
for {set j 0} {$j < $n} {incr j} {
set s 0.0
set notpositive 0
for {set i 0} {$i < $n} {incr i} {
set Uij [lindex $U $i $j]
if { $Uij <= 0.0 } {
incr notpositive
}
set s [expr {$s + $Uij*$Uij}]
}
set s [expr {sqrt($s)}]
if { $notpositive == $n } {
set sf [expr {-$s}]
} else {
set sf $s
}
set colv [getcol $U $j]
setcol U $j [scale_vect [expr {1.0/$sf}] $colv]
}
for {set j 0} {$j < $n} {incr j} {
lset S $j [expr {[lindex $S $j] + $h}]
}
return [list $U $S]
}
# leastSquaresSVD --
# Determine the solution to the least-squares problem Ax ~ y
# via the singular value decomposition
# Arguments:
# A Matrix to be examined
# y Dependent variable
# qmin Minimum singular value to be considered (defaults to 0)
# epsilon Tolerance for the procedure (defaults to 2.3e-16)
#
# Result:
# Vector x as the solution of the least-squares problem
#
proc ::math::linearalgebra::leastSquaresSVD { A y {qmin 0.0} {epsilon 2.3e-16} } {
foreach {m n} [shape $A] {break}
foreach {U S V} [determineSVD $A $epsilon] {break}
set tol [expr {$epsilon * $epsilon * $n * $n}]
#
# form Utrans*y into g
#
set g {}
for {set j 0} {$j < $n} {incr j} {
set s 0.0
for {set i 0} {$i < $m} {incr i} {
set Uij [lindex $U $i $j]
set yi [lindex $y $i]
set s [expr {$s + $Uij*$yi}]
}
lappend g $s ;# g[j] = $s
}
#
# form VS+g = VS+Utrans*g
#
set x {}
for {set j 0} {$j < $n} {incr j} {
set s 0.0
for {set i 0} {$i < $n} {incr i} {
set zi [lindex $S $i]
if { $zi > $qmin } {
set Vji [lindex $V $j $i]
set gi [lindex $g $i]
set s [expr {$s + $Vji*$gi/$zi}]
}
}
lappend x $s
}
return $x
}
# choleski --
# Determine the Choleski decomposition of a symmetric,
# positive-semidefinite matrix (this condition is not checked!)
#
# Arguments:
# matrix Matrix to be treated
#
# Result:
# Lower-triangular matrix (L) representing the Choleski decomposition:
# L Lt = matrix
#
proc ::math::linearalgebra::choleski { matrix } {
foreach {rows cols} [shape $matrix] {break}
set result $matrix
for { set j 0 } { $j < $cols } { incr j } {
if { $j > 0 } {
for { set i $j } { $i < $cols } { incr i } {
set sum [lindex $result $i $j]
for { set k 0 } { $k <= $j-1 } { incr k } {
set Aki [lindex $result $i $k]
set Akj [lindex $result $j $k]
set sum [expr {$sum-$Aki*$Akj}]
}
lset result $i $j $sum
}
}
#
# Take care of a singular matrix
#
if { [lindex $result $j $j] <= 0.0 } {
lset result $j $j 0.0
}
#
# Scale the column
#
set s [expr {sqrt([lindex $result $j $j])}]
for { set i 0 } { $i < $cols } { incr i } {
if { $i >= $j } {
if { $s == 0.0 } {
lset result $i $j 0.0
} else {
lset result $i $j [expr {[lindex $result $i $j]/$s}]
}
} else {
lset result $i $j 0.0
}
}
}
return $result
}
# orthonormalizeColumns --
# Orthonormalize the columns of a matrix, using the modified
# Gram-Schmidt method
# Arguments:
# matrix Matrix to be treated
#
# Result:
# Matrix with pairwise orthogonal columns, each having length 1
#
proc ::math::linearalgebra::orthonormalizeColumns { matrix } {
transpose [orthonormalizeRows [transpose $matrix]]
}
# orthonormalizeRows --
# Orthonormalize the rows of a matrix, using the modified
# Gram-Schmidt method
# Arguments:
# matrix Matrix to be treated
#
# Result:
# Matrix with pairwise orthogonal rows, each having length 1
#
proc ::math::linearalgebra::orthonormalizeRows { matrix } {
set result $matrix
set rowno 0
foreach r $matrix {
set newrow [unitLengthVector [getrow $result $rowno]]
setrow result $rowno $newrow
incr rowno
set rowno2 $rowno
#
# Update the matrix immediately: this is numerically
# more stable
#
foreach nextrow [lrange $result $rowno end] {
set factor [dotproduct $newrow $nextrow]
set nextrow [sub_vect $nextrow [scale_vect $factor $newrow]]
setrow result $rowno2 $nextrow
incr rowno2
}
}
return $result
}
# dger --
# Performs the rank 1 operation alpha*x*y' + A
# Arguments:
# matrix name of the matrix to process (the matrix must be square)
# alpha a real value
# x a vector
# y a vector
# scope if not provided, the operation is performed on all rows/columns of A
# if provided, it is expected to be the list [list imin imax jmin jmax]
# where :
# imin Minimum row index
# imax Maximum row index
# jmin Minimum column index
# jmax Maximum column index
#
# Result:
# Updated matrix
# Level-3 BLAS : corresponds to DGER
#
proc ::math::linearalgebra::dger { matrix alpha x y {scope ""}} {
upvar $matrix mat
set nrows [llength $mat]
set ncols $nrows
if {$scope==""} then {
set imin 0
set imax [expr {$nrows - 1}]
set jmin 0
set jmax [expr {$ncols - 1}]
} else {
foreach {imin imax jmin jmax} $scope {break}
}
set xy [matmul $x $y]
set alphaxy [scale $alpha $xy]
for { set iline $imin } { $iline <= $imax } { incr iline } {
set ilineshift [expr {$iline - $imin}]
set matiline [lindex $mat $iline]
set alphailine [lindex $alphaxy $ilineshift]
for { set icol $jmin } { $icol <= $jmax } { incr icol } {
set icolshift [expr {$icol - $jmin}]
set aij [lindex $matiline $icol]
set shift [lindex $alphailine $icolshift]
setelem mat $iline $icol [expr {$aij + $shift}]
}
}
return $mat
}
# dgetrf --
# Computes an LU factorization of a general matrix, using partial,
# pivoting with row interchanges.
#
# Arguments:
# matrix On entry, the matrix to be factored.
# On exit, the factors L and U from the factorization
# P*A = L*U; the unit diagonal elements of L are not stored.
#
# Result:
# Returns the permutation vector, as a list of length n-1.
# The last entry of the permutation is not stored, since it is
# implicitely known, with value n (the last row is not swapped
# with any other row).
# At index #i of the permutation is stored the index of the row #j
# which is swapped with row #i at step #i. That means that each
# index of the permutation gives the permutation at each step, not the
# cumulated permutation matrix, which is the product of permutations.
# The factorization has the form
# P * A = L * U
# where P is a permutation matrix, L is lower triangular with unit
# diagonal elements, and U is upper triangular.
#
# LAPACK : corresponds to DGETRF
#
proc ::math::linearalgebra::dgetrf { matrix } {
upvar $matrix mat
set norows [llength $mat]
set nocols $norows
# Initialize permutation
set nm1 [expr {$norows - 1}]
set ipiv {}
# Perform Gauss transforms
for { set k 0 } { $k < $nm1 } { incr k } {
# Search pivot in column n, from lines k to n
set column [getcol $mat $k $k $nm1]
foreach {abspivot murel} [norm_max $column 1] {break}
# Shift mu, because max returns with respect to the column (k:n,k)
set mu [expr {$murel + $k}]
# Swap lines k and mu from columns 1 to n
swaprows mat $k $mu
set akk [lindex $mat $k $k]
# Store permutation
lappend ipiv $mu
# Store pivots for lines k+1 to n in columns k+1 to n
set kp1 [expr {$k+1}]
set akp1 [getcol $mat $k $kp1 $nm1]
set mult [expr {1. / double($akk)}]
set akp1 [scale $mult $akp1]
setcol mat $k $akp1 $kp1 $nm1
# Perform transform for lines k+1 to n
set akp1k [getcol $mat $k $kp1 $nm1]
set akkp1 [lrange [lindex $mat $k] $kp1 $nm1]
set scope [list $kp1 $nm1 $kp1 $nm1]
dger mat -1. $akp1k $akkp1 $scope
}
return $ipiv
}
# det --
# Returns the determinant of the given matrix, based on PA=LU
# decomposition (i.e. dgetrf).
#
# Arguments:
# matrix The matrix values.
# ipiv The pivots (optionnal).
# If the pivots are not provided, a PA=LU decomposition
# is performed.
# If the pivots are provided, we assume that it
# contains the pivots and that the matrix A contains the
# L and U factors, as provided by dgterf.
#
# Result:
# Returns the determinant
#
proc ::math::linearalgebra::det { matrix {ipiv ""}} {
if { $ipiv == "" } then {
set ipiv [dgetrf matrix]
}
set det 1.0
set norows [llength $matrix]
set i 0
foreach row $matrix {
set uu [lindex $row $i]
set det [expr {$det * $uu}]
if { $i < $norows - 1 } then {
set ii [lindex $ipiv $i]
if { $ii!=$i } then {
set det [expr {-1.0 * $det}]
}
}
incr i
}
return $det
}
# largesteigen --
# Returns a list made of the largest eigenvalue (in magnitude)
# and associated eigenvector.
# Uses Power Method.
#
# Arguments:
# matrix The matrix values.
# tolerance The relative tolerance of the eigenvalue.
# maxiter The maximum number of iterations
#
# Result:
# Returns a list of two items, where the first item
# is the eigenvalue and the second is the eigenvector.
# Note
# This is algorithm #7.3.3 of Golub & Van Loan.
#
proc ::math::linearalgebra::largesteigen { matrix {tolerance 1.e-8} {maxiter 10}} {
set norows [llength $matrix]
set q [mkVector $norows 1.0]
set lambda 1.0
for { set k 0 } { $k < $maxiter } { incr k } {
set z [matmul $matrix $q]
set zn [norm $z]
if { $zn == 0.0 } then {
return -code error "Cannot continue power method : matrix is singular"
}
set s [expr {1.0 / $zn}]
set q [scale $s $z]
set prod [matmul $matrix $q]
set lambda_old $lambda
set lambda [dotproduct $q $prod]
if { abs($lambda - $lambda_old) < $tolerance * abs($lambda_old) } then {
break
}
}
return [list $lambda $q]
}
# to_LA --
# Convert a matrix or vector to the LA format
# Arguments:
# mv Matrix or vector to be converted
#
# Result:
# List according to LA conventions
#
proc ::math::linearalgebra::to_LA { mv } {
foreach {rows cols} [shape $mv] {
if { $cols == {} } {
set cols 0
}
}
set result [list 2 $rows $cols]
foreach row $mv {
set result [concat $result $row]
}
return $result
}
# from_LA --
# Convert a matrix or vector from the LA format
# Arguments:
# mv Matrix or vector to be converted
#
# Result:
# List according to current conventions
#
proc ::math::linearalgebra::from_LA { mv } {
foreach {rows cols} [lrange $mv 1 2] {break}
if { $cols != 0 } {
set result {}
set elem2 2
for { set i 0 } { $i < $rows } { incr i } {
set elem1 [expr {$elem2+1}]
incr elem2 $cols
lappend result [lrange $mv $elem1 $elem2]
}
} else {
set result [lrange $mv 3 end]
}
return $result
}
#
# Announce the package's presence
#
package provide math::linearalgebra 1.1.4
if { 0 } {
Te doen:
behoorlijke testen!
matmul
solveGauss_band
join_col, join_row
kleinste-kwadraten met SVD en met Gauss
PCA
}
if { 0 } {
set matrix {{1.0 2.0 -1.0}
{3.0 1.1 0.5}
{1.0 -2.0 3.0}}
set bvect {{1.0 2.0 -1.0}
{3.0 1.1 0.5}
{1.0 -2.0 3.0}}
puts [join [::math::linearalgebra::solveGauss $matrix $bvect] \n]
set bvect {{4.0 2.0}
{12.0 1.2}
{4.0 -2.0}}
puts [join [::math::linearalgebra::solveGauss $matrix $bvect] \n]
}
if { 0 } {
set vect1 {1.0 2.0}
set vect2 {3.0 4.0}
::math::linearalgebra::axpy_vect 1.0 $vect1 $vect2
::math::linearalgebra::add_vect $vect1 $vect2
puts [time {::math::linearalgebra::axpy_vect 1.0 $vect1 $vect2} 50000]
puts [time {::math::linearalgebra::axpy_vect 2.0 $vect1 $vect2} 50000]
puts [time {::math::linearalgebra::axpy_vect 1.0 $vect1 $vect2} 50000]
puts [time {::math::linearalgebra::axpy_vect 1.1 $vect1 $vect2} 50000]
puts [time {::math::linearalgebra::add_vect $vect1 $vect2} 50000]
}
if { 0 } {
set M {{1 2} {2 1}}
puts "[::math::linearalgebra::determineSVD $M]"
}
if { 0 } {
set M {{1 2} {2 1}}
puts "[::math::linearalgebra::normMatrix $M]"
}
if { 0 } {
set M {{1.3 2.3} {2.123 1}}
puts "[::math::linearalgebra::show $M]"
set M {{1.3 2.3 45 3.} {2.123 1 5.6 0.01}}
puts "[::math::linearalgebra::show $M]"
puts "[::math::linearalgebra::show $M %12.4f]"
}
if { 0 } {
set M {{1 0 0}
{1 1 0}
{1 1 1}}
puts [::math::linearalgebra::orthonormalizeRows $M]
}
if { 0 } {
set M [::math::linearalgebra::mkMoler 5]
puts [::math::linearalgebra::choleski $M]
}
if { 0 } {
set M [::math::linearalgebra::mkRandom 20]
set b [::math::linearalgebra::mkVector 20]
puts "Gauss A = LU"
puts [time {::math::linearalgebra::solveGauss $M $b} 5]
puts "Gauss PA = LU"
puts [time {::math::linearalgebra::solvePGauss $M $b} 5]
# Gauss A = LU
# 7607.4 microseconds per iteration
# Gauss PA = LU
# 17428.4 microseconds per iteration
}
|