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
|
####--- All "Ops" group methods for all Matrix classes (incl sparseVector) ------
#### === but diagonalMatrix -> ./diagMatrix.R and abIndex.R
#### ~~~~~~~~~~~~ ~~~~~~~~~
### Note that the "Ops" group consists of
### sub-groups "Arith", "Compare", and "Logic"
### ----- ------- -----
### where 'Arith' := '"+"', '"-"', '"*"', '"^"', '"%%"', '"%/%"', '"/"'
### 'Compare' := '"=="', '">"', '"<"', '"!="', '"<="', '">="'
### 'Logic' := '"&"', '"|"'
### but *not* '"!"' since that has only one argument : >>>>> ./not.R
## cache them [rather in package 'methods' ??]
.ArithGenerics <- getGroupMembers("Arith")
.CompareGenerics <- getGroupMembers("Compare")
.LogicGenerics <- getGroupMembers("Logic")
## find them with M-x grep -E 'Method\("(Ops|Compare|Arith|Logic)"' *.R
## --------
### Design decision for *sparseMatrix*:
### work via Csparse since Tsparse are not-unique (<-> slots not compatible)
### Dimnames: (partly) via dimNamesCheck() [ ./Auxiliaries.R ]
### -- 0 -- (not dense *or* sparse) -----------------------------------
##-------- originally from ./Matrix.R --------------------
## Some ``Univariate'' "Arith" (univariate := 2nd argument 'e2' is missing)
setMethod("+", signature(e1 = "Matrix", e2 = "missing"), function(e1,e2) e1)
## "fallback":
setMethod("-", signature(e1 = "Matrix", e2 = "missing"),
function(e1, e2) {
warning("inefficient method used for \"- e1\"")
0-e1
})
setMethod("-", signature(e1 = "denseMatrix", e2 = "missing"),
function(e1, e2) { e1@x <- -e1@x; e1 })
## "diagonalMatrix" -- only two cases -- easiest to do both
setMethod("-", signature(e1 = "ddiMatrix", e2 = "missing"),
function(e1, e2) {
if(e1@diag == "U") {
e1@x <- rep.int(-1., e1@Dim[1])
e1@diag <- "N"
}
else ## diag == "N" -> using 'x' slot
e1@x <- -e1@x
e1
})
setMethod("-", signature(e1 = "ldiMatrix", e2 = "missing"),
function(e1, e2) {
d <- e1@Dim
new("ddiMatrix", Dim = d, Dimnames = e1@Dimnames, diag = "N",
x = if(e1@diag == "U") rep.int(-1, d[1]) else -e1@x)
})
## old-style matrices are made into new ones
setMethod("Ops", signature(e1 = "Matrix", e2 = "matrix"),
function(e1, e2) callGeneric(e1, Matrix(e2)))
setMethod("Ops", signature(e1 = "matrix", e2 = "Matrix"),
function(e1, e2) callGeneric(Matrix(e1), e2))
## Note: things like callGeneric(Matrix(e1, sparse=is(e2,"sparseMatrix")), e2))
## may *not* be better: e.g. Matrix(.) can give *diagonal* instead of sparse
## NULL should be treated as logical(0) {which often will be coerced to numeric(0)}:
setMethod("Ops", signature(e1 = "Matrix", e2 = "NULL"),
function(e1, e2) callGeneric(e1, logical()))
setMethod("Ops", signature(e1 = "NULL", e2 = "Matrix"),
function(e1, e2) callGeneric(logical(), e2))
## bail-outs -- on highest possible level, hence "Ops", not "Compare"/"Arith" :
.bail.out.Ops <- function(e1, e2) {
if(is(e1, "mMatrix") && is(e2, "mMatrix"))
dimCheck(e1,e2)
.bail.out.2(.Generic, class(e1), class(e2))
}
setMethod("Ops", signature(e1 = "Matrix", e2 = "ANY"),
function(e1, e2) {
if(is(e1, "mMatrix") && is(e2, "mMatrix")) dimCheck(e1,e2)
if(is.matrix(e2) && identical(e2, as.matrix(e2)) &&
is.object(e2) && !isS4(e2)) # e.g. for "table"
callGeneric(e1, unclass(e2))
else
.bail.out.2(.Generic, class(e1), class(e2))
})
setMethod("Ops", signature(e1 = "ANY", e2 = "Matrix"),
function(e1, e2) {
if(is(e1, "mMatrix") && is(e2, "mMatrix")) dimCheck(e1,e2)
if(is.matrix(e1) && identical(e1, as.matrix(e1)) &&
is.object(e1) && !isS4(e1)) # e.g. for "table"
callGeneric(unclass(e1), e2)
else
.bail.out.2(.Generic, class(e1), class(e2))
})
rm(.bail.out.Ops)
## "General principle"
## - - - - - - - - -
## For "Arith" it is sufficient (though not optimal, once we have "iMatrix"!)
## to define "dMatrix" methods and coerce all other "[nli]Matrix" to "dMatrix"
setMethod("Arith", signature(e1 = "Matrix", e2 = "Matrix"),
function(e1, e2) callGeneric(as(e1, "dMatrix"), as(e2, "dMatrix")))
## For "Compare", this would be feasible too, but is clearly suboptimal,
## particularly for "==" and "!="
## and for "lMatrix" and "nMatrix" should not coerce at all
if(FALSE)
setMethod("Compare", signature(e1 = "Matrix", e2 = "Matrix"),
function(e1, e2) {
if(is.na(match(.Generic, c("==", "!="))))
callGeneric(as(e1, "dMatrix"), as(e2, "dMatrix"))
else { ## no coercion needed for "==" or "!="
##
## what now ? <<<<<<<<<<< FIXME >>>>>>>>>
.bail.out.2(.Generic, class(e1), class(e2))
}
})
## Working entirely on "matching" x slot:
## can be done for matching-dim "*geMatrix", and also
## matching-{dim + uplo} for *packed* (only!) symmetric+triangular
.Ops.via.x <- function(e1,e2) {
dimCheck(e1, e2)
e1@x <- callGeneric(e1@x, e2@x)
e1
}
###-------- originally from ./dMatrix.R --------------------
##
## Note that there extra methods for <sparse> o <sparse> !
##
## "Compare" -> returning logical Matrices; .Cmp.swap() is in ./Auxiliaries.R
setMethod("Compare", signature(e1 = "numeric", e2 = "dMatrix"), .Cmp.swap)
setMethod("Compare", signature(e1 = "logical", e2 = "dMatrix"), .Cmp.swap)
setMethod("Compare", signature(e1 = "numeric", e2 = "lMatrix"), .Cmp.swap)
setMethod("Compare", signature(e1 = "logical", e2 = "lMatrix"), .Cmp.swap)
setMethod("Compare", signature(e1 = "numeric", e2 = "nMatrix"), .Cmp.swap)
setMethod("Compare", signature(e1 = "logical", e2 = "nMatrix"), .Cmp.swap)
## This is parallel to Logic.Mat.atomic() below ---> __keep parallel__ !
Cmp.Mat.atomic <- function(e1, e2) { ## result will inherit from "lMatrix"
n1 <- prod(d <- e1@Dim)
cl <- class(e1)
if((l2 <- length(e2)) == 0)
return(if(n1 == 0)
as(e1, class2(cl, "l"))# more expensive than (but working for "dgC*"):
## new(class2(cl, "l"), Dim = d, Dimnames = e1@Dimnames)
else
as.logical(e2))
## else
if(n1 && n1 < l2)
stop(sprintf(
"dim [product %d] do not match the length of object [%d]", n1, l2))
cl1 <- getClassDef(cl)
slots1 <- names(cl1@slots)
has.x <- any("x" == slots1)# *fast* check for "x" slot presence
if(l2 > 1 && has.x)
return(if(n1 == 0)
new(class2(cl, "l"), x = callGeneric(e1@x, e2),
Dim = d, Dimnames = e1@Dimnames)
else ## e2 cannot simply be compared with e1@x --> use another method
callGeneric(e1, Matrix(e2, nrow=d[1], ncol=d[2])))
## else
Udg <- extends(cl1, "triangularMatrix") && e1@diag == "U"
r0 <- callGeneric(0, e2)
## Udg: append the diagonal at *end*, as diagU2N():
r <- callGeneric(if(Udg) c(e1@x,..diag.x(e1)) else if(has.x) e1@x else TRUE, e2)
## trivial case first (beware of NA)
if(isTRUE(all(r0) && all(r))) {
r <- new(if(d[1] == d[2]) "lsyMatrix" else "lgeMatrix")
r@Dim <- d
r@Dimnames <- e1@Dimnames
r@x <- rep.int(TRUE, n1)
}
else if(extends(cl1, "denseMatrix")) {
full <- !.isPacked(e1) # << both "dtr" and "dsy" are 'full'
if(full || allFalse(r0) || extends(cl1, "symmetricMatrix")) {
isTri <- extends(cl1, "triangularMatrix")
if(isTri) {
if(extends1of(cl1, c("Cholesky","BunchKaufman")))
cl1 <- getClassDef(cl <- class(e1 <- as(e1, "dtrMatrix")))
}
## FIXME? using copyClass() to copy "relevant" slots
r <- new(class2(cl, "l"), x = r, Dim = d, Dimnames = e1@Dimnames)
if(extends(cl1, "symmetricMatrix")) {
r@uplo <- e1@uplo
} else if(isTri) {
r@uplo <- e1@uplo
r@diag <- e1@diag
}
}
else { ## packed matrix with structural 0 and r0 is not all FALSE:
##--> result cannot be packed anymore
## [dense & packed & not symmetric ] ==> must be "dtp*" :
if(!extends(cl1, "dtpMatrix"))
stop("internal bug in \"Compare\" method (Cmp.Mat.atomic); please report")
rx <- rep_len(r0, n1)
rx[indTri(d[1], upper = (e1@uplo == "U"), diag=TRUE)] <- r
r <- new("lgeMatrix", x = rx, Dim = d, Dimnames = e1@Dimnames)
}
}
else { ##---- e1 is(. , sparseMatrix) -----------------
## FIXME: remove this test eventually
if(extends(cl1, "diagonalMatrix")) stop("Cmp.Mat.atomic() should not be called for diagonalMatrix")
remainSparse <- allFalse(r0) ## <==> things remain sparse
if(Udg) { # e1 *is* unit-diagonal (triangular sparse)
r1 <- callGeneric(1, e2)
Udg <- all(r1) # maybe Unit-diagonal (sparse) result
## if(!remainSparse) we'll use non0ind() which *has* unit-diag. indices at end
##
if(Udg && remainSparse) {
} else { ## result will not be unit-diagonal sparse
e1 <- .diagU2N(e1, cl = cl1) # otherwise, result is U-diag
if(extends(cl1, "CsparseMatrix")) {
## repeat computation if e1 has changed
r <- callGeneric(if(has.x) e1@x else TRUE, e2)
}
}
}
if(remainSparse) {
if(!anyNA(r) && ((Ar <- all(r)) || !any(r))) {
lClass <- class2(cl, "l") # is "lsparse*"
r <- new(lClass)
r@Dim <- d
r@Dimnames <- e1@Dimnames
if(Ar) { # 'TRUE' instead of 'x': same sparsity:
for(n in intersect(c("i","j","p","uplo","diag"), slots1))
slot(r, n) <- slot(e1, n)
n <- if(has.x) length(e1@x) else if(any("p" == slots1))
e1@p[d[2]+1L] else length(e1@i)
r@x <- rep.int(TRUE, n)
}
else { ## !any(r): all FALSE: keep empty 'r' matrix
## but may need a valid 'pointer' slot:
if(extends(lClass, "CsparseMatrix"))
r@p <- rep.int(0L, 1+ncol(r))
else if(extends(lClass, "RsparseMatrix"))
r@p <- rep.int(0L, 1+nrow(r))
}
} else { # some TRUE, FALSE, NA : go via unique 'Tsparse'
M <- asTuniq(e1)
nCl <- class2(class(M), 'l') # logical Tsparse
sN <- slotNames(nCl)
## copy "the other slots" (important for "tr"/"sym"):
r <- copyClass(M, nCl, sNames = sN[is.na(match(sN, "x"))])
r@x <- callGeneric(if(has.x) M@x else 1, e2)
if(extends(cl1, "CsparseMatrix"))
r <- as(r, "CsparseMatrix")
else if(extends(cl1, "RsparseMatrix"))
r <- as(r, "RsparseMatrix")
}
}
else { ## non sparse result; triangularity also gone, typically
lClass <- if(extends(cl1, "symmetricMatrix")) "lsyMatrix" else "lgeMatrix"
Matrix.msg(sprintf("sparse to dense (%s) coercion in '%s' -> %s",
lClass, .Generic, "Cmp.Mat.atomic"), .M.level = 2)
rx <- rep_len(r0, n1)
## Here, we assume that 'r' and the indices align (!)
encI <- .Call(m_encodeInd,
non0ind(e1, cl1, uniqT=FALSE, xtendSymm=FALSE),
di = d, orig1=FALSE, checkBounds=FALSE)
rx[1L + encI] <- r
r <- new(lClass, x = rx, Dim = d, Dimnames = e1@Dimnames)
}
}
r
}
setMethod("Compare", signature(e1 = "dMatrix", e2 = "numeric"), Cmp.Mat.atomic)
setMethod("Compare", signature(e1 = "dMatrix", e2 = "logical"), Cmp.Mat.atomic)
setMethod("Compare", signature(e1 = "lMatrix", e2 = "numeric"), Cmp.Mat.atomic)
setMethod("Compare", signature(e1 = "lMatrix", e2 = "logical"), Cmp.Mat.atomic)
setMethod("Compare", signature(e1 = "nMatrix", e2 = "numeric"), Cmp.Mat.atomic)
setMethod("Compare", signature(e1 = "nMatrix", e2 = "logical"), Cmp.Mat.atomic)
## "xMatrix <-> work with 'x' slot {was originally just for "Compare"}:
## ------- {also used for "Arith"}:
Ops.x.x <- function(e1, e2)
{
d <- dimCheck(e1,e2)
if((dens1 <- extends(c1 <- class(e1), "denseMatrix")))
gen1 <- extends(c1, "generalMatrix")
if((dens2 <- extends(c2 <- class(e2), "denseMatrix")))
gen2 <- extends(c2, "generalMatrix")
if(dens1 && dens2) { ## both inherit from ddense*
geM <- TRUE
if(!gen1) {
if(!gen2) { ## consider preserving "triangular" / "symmetric"
geM <- FALSE
le <- prod(d)
isPacked <- function(x) length(x@x) < le
Mclass <-
if(extends(c1, "symmetricMatrix") &&
extends(c2, "symmetricMatrix")) {
if(e1@uplo != e2@uplo)
## one is upper, one is lower
e2 <- t(e2)
if((p1 <- isPacked(e1)) | (p2 <- isPacked(e2))) { ## at least one is packed
if(p1 != p2) { # one is not packed --> *do* pack it:
pack.sy <- function(x)
if(is.numeric(x@x))
.Call(dsyMatrix_as_dspMatrix, x)
else .Call(lsyMatrix_as_lspMatrix, x, 0L)
if(p1) e2 <- pack.sy(e2)
else e1 <- pack.sy(e1)
}
"spMatrix"
} else
"syMatrix"
}
else if(extends(c1, "triangularMatrix") &&
extends(c2, "triangularMatrix")) {
if(!(geM <- e1@uplo != e2@uplo || isN0(callGeneric(0,0)))) {
p1 <- isPacked(e1)
p2 <- isPacked(e2)
if(e1@diag == "U") e1 <- .dense.diagU2N(e1, isPacked=p1)
if(e2@diag == "U") e2 <- .dense.diagU2N(e2, isPacked=p2)
if(p1 | p2) { ## at least one is packed
if(p1 != p2) { # one is not packed --> *do* pack it:
pack.tr <- function(x)
if(is.numeric(x@x)) .Call(dtrMatrix_as_dtpMatrix, x)
else .Call(ltrMatrix_as_ltpMatrix, x, 0L)
if(p1) e2 <- pack.tr(e2)
else e1 <- pack.tr(e1)
}
"tpMatrix"
} else
"trMatrix"
}
}
else { ## not symmetric, not triangular ==> "general"
geM <- TRUE
}
if(geM)
e2 <- as(e2, "generalMatrix")
}
if(geM)
e1 <- as(e1, "generalMatrix") # was "dgeMatrix"
} else { ## gen1
if(!gen2) e2 <- as(e2, "generalMatrix")
}
## now, in all cases @x should be matching & correct {only "uplo" part is used}
r <- callGeneric(e1@x, e2@x)
kr <- .M.kind(r)
if(kr == "d" && !is.double(r)) ## as "igeMatrix" does not yet exist!
r <- as.double(r)
if(geM)
new(paste0(kr, "geMatrix"), x = r, Dim = d, Dimnames = e1@Dimnames)
else
new(paste0(kr, Mclass), x = r, Dim = d, Dimnames = e1@Dimnames, uplo = e1@uplo)
}
else {
r <- if(!dens1 && !dens2)
## both e1 _and_ e2 are sparse.
## Now (new method dispatch, 2009-01) *does* happen
## even though we have <sparse> o <sparse> methods
callGeneric(as(e1, "CsparseMatrix"), as(e2, "CsparseMatrix"))
else if(dens1 && !dens2) ## go to dense
callGeneric(e1, as(e2, "denseMatrix"))
else ## if(!dens1 && dens2)
callGeneric(as(e1, "denseMatrix"), e2)
## criterion "2 * nnz(.) < ." as in sparseDefault() in Matrix() [./Matrix.R] :
if(2 * nnzero(r, na.counted = TRUE) < prod(d))
as(r, "sparseMatrix") else r
}
}
setMethod("Ops", signature(e1 = "dMatrix", e2 = "dMatrix"), Ops.x.x)
setMethod("Ops", signature(e1 = "lMatrix", e2 = "lMatrix"), Ops.x.x)
## n*: for "Arith" go via dMatrix, for "Logic" via "lMatrix"
setMethod("Compare", signature(e1 = "nMatrix", e2 = "nMatrix"), Ops.x.x)
## l o d : depends on *kind* of Ops -- but Ops.x.x works on slots - correctly:
setMethod("Ops", signature(e1="lMatrix", e2="dMatrix"), Ops.x.x)
setMethod("Ops", signature(e1="dMatrix", e2="lMatrix"), Ops.x.x)
## lMatrix & nMatrix ... probably should also just use "Matrix" ?
##
## Hmm, the coercion should differ, depending on subgroup ("Logic", "Arith",..)
## --> try to get rid of these
setMethod("Ops", signature(e1="lMatrix", e2="numeric"),
function(e1,e2) callGeneric(as(e1,"dMatrix"), e2))
setMethod("Ops", signature(e1="numeric", e2="lMatrix"),
function(e1,e2) callGeneric(e1, as(e2,"dMatrix")))
setMethod("Ops", signature(e1="nMatrix", e2="numeric"),
function(e1,e2) callGeneric(as(e1,"dMatrix"), e2))
setMethod("Ops", signature(e1="numeric", e2="nMatrix"),
function(e1,e2) callGeneric(e1, as(e2,"dMatrix")))
## setMethod("Ops", signature(e1="Matrix", e2="logical"),
## function(e1,e2) callGeneric(as(e1,"lMatrix"), e2))
## setMethod("Ops", signature(e1="logical", e2="Matrix"),
## function(e1,e2) callGeneric(e1, as(e2,"lMatrix")))
## "dpoMatrix" / "dppMatrix" :
## Positive-definiteness is lost with all "Ops" but some "Arith" cases
for(cl in c("numeric", "logical")) { # "complex", "raw" : basically "replValue"
setMethod("Arith", signature(e1 = cl, e2 = "dpoMatrix"),
function(e1, e2) if(!(l1 <- length(e1))) numeric()
else if(l1 == 1 && any(.Generic == c("*","/","+")) && (e1 > 0)) {
e2@x <- callGeneric(e1, e2@x) ; e2 # remains "dpo"
} else ## in all other cases
callGeneric(e1, as(e2, "dsyMatrix")))
setMethod("Arith", signature(e1 = cl, e2 = "dppMatrix"),
function(e1, e2) if(!(l1 <- length(e1))) numeric()
else if(l1 == 1 && any(.Generic == c("*","/","+")) && (e1 > 0)) {
e2@x <- callGeneric(e1, e2@x) ; e2 # remains "dpp"
} else ## in all other cases
callGeneric(e1, as(e2, "dspMatrix")))
setMethod("Arith", signature(e1 = "dpoMatrix", e2 = cl),
function(e1, e2) if(!(l2 <- length(e2))) numeric()
else if(l2 == 1 && any(.Generic == c("*","/","+")) && (e2 > 0)) {
e1@x <- callGeneric(e1@x, e2) ; e1 # remains "dpo"
} else ## in all other cases
callGeneric(as(e1, "dsyMatrix"), e2))
setMethod("Arith", signature(e1 = "dppMatrix", e2 = cl),
function(e1, e2) if(!(l2 <- length(e2))) numeric()
else if(l2 == 1 && any(.Generic == c("*","/","+")) && (e2 > 0)) {
e1@x <- callGeneric(e1@x, e2) ; e1 # remains "dpp"
} else ## in all other cases
callGeneric(as(e1, "dspMatrix"), e2))
setMethod("Ops", signature(e1 = cl, e2 = "dpoMatrix"),
function(e1, e2) callGeneric(e1, as(e2, "dsyMatrix")))
setMethod("Ops", signature(e1 = cl, e2 = "dppMatrix"),
function(e1, e2) callGeneric(e1, as(e2, "dspMatrix")))
setMethod("Ops", signature(e1 = "dpoMatrix", e2 = cl),
function(e1, e2) callGeneric(as(e1, "dsyMatrix"), e2))
setMethod("Ops", signature(e1 = "dppMatrix", e2 = cl),
function(e1, e2) callGeneric(as(e1, "dspMatrix"), e2))
}# for(cl...)
### -- I -- dense -----------------------------------------------------------
##-------- originally from ./dgeMatrix.R --------------------
## ----- only work with NAMESPACE importFrom(methods, ..)
setMethod("Arith", signature(e1 = "dgeMatrix", e2 = "dgeMatrix"),
## "+", "-", "*", "^", "%%", "%/%", "/"
function(e1, e2) {
## NB: triangular, symmetric, etc may need own method
d1 <- e1@Dim
d2 <- e2@Dim
eqD <- d1 == d2
if (!eqD[1])
stop("Matrices must have same number of rows for arithmetic")
same.dim <- eqD[2]
if (same.dim) {
d <- d1
dn <- dimNamesCheck(e1, e2)
}
else { # nrows differ ----> maybe recycling
if(d2[2] %% d1[2] == 0) { # nrow(e2) is a multiple
e1@x <- rep.int(e1@x, d2[2] %/% d1[2])
d <- d2
dn <- e2@Dimnames
} else if(d1[2] %% d2[2] == 0) { # nrow(e1) is a multiple
e2@x <- rep.int(e2@x, d1[2] %/% d2[2])
d <- d1
dn <- e1@Dimnames
} else
stop(gettextf("number of rows are not compatible for %s",
.Generic), domain=NA)
}
new("dgeMatrix", Dim = d, Dimnames = dn, x = callGeneric(e1@x, e2@x))
})
A.M.n <- function(e1, e2) {
d <- e1@Dim
le <- length(e2)
if(le == 0)
if(prod(d) == 0)
new(class2(class(e1), "d"), Dim = d, Dimnames = e1@Dimnames)
else
as.numeric(e2)
else if(le == 1 || le == d[1] || any(prod(d) == c(le, 0L))) { # matching dim
e1@x <- callGeneric(e1@x, as.vector(e2))
e1
} else stop ("length of 2nd arg does not match dimension of first")
}
setMethod("Arith", signature(e1 = "dgeMatrix", e2 = "numeric"), A.M.n)
setMethod("Arith", signature(e1 = "dgeMatrix", e2 = "logical"), A.M.n)
setMethod("Arith", signature(e1 = "dgeMatrix", e2 = "sparseVector"), A.M.n)
A.n.M <- function(e1, e2) {
d <- e2@Dim
le <- length(e1)
if(le == 0)
if(prod(d) == 0)
new(class2(class(e2), "d"), Dim = d, Dimnames = e2@Dimnames)
else
as.numeric(e1)
else if(le == 1 || le == d[1] || any(prod(d) == c(le, 0L))) { # matching dim
e2@x <- callGeneric(as.vector(e1), e2@x)
e2
} else stop ("length of 1st arg does not match dimension of 2nd")
}
setMethod("Arith", signature(e1 = "numeric", e2 = "dgeMatrix"), A.n.M)
setMethod("Arith", signature(e1 = "logical", e2 = "dgeMatrix"), A.n.M)
setMethod("Arith", signature(e1 = "sparseVector", e2 = "dgeMatrix"), A.n.M)
##
rm(A.M.n, A.n.M)
##-------- originally from ./ddenseMatrix.R --------------------
## Cheap version: work via "dgeMatrix" and use the group methods there:
if(FALSE)## preserve "symmetric", "triangular", --> rather use Ops.x.x
setMethod("Arith", signature(e1 = "ddenseMatrix", e2 = "ddenseMatrix"),
function(e1, e2) callGeneric(as(e1, "dgeMatrix"),
as(e2, "dgeMatrix")))
.Arith.denseM.atom <- function(e1, e2) {
## since e1 = "dgeMatrix" has its own method, we have
## either symmetric or triangular !
n1 <- prod(d <- e1@Dim)
le <- length(e2 <- as.vector(e2))
if(n1 && n1 < le)
stop(sprintf(
"dim [product %d] do not match the length of object [%d]", n1, le))
if(le == 0)
if(prod(d) == 0)
new(class2(class(e1), "d"), Dim = d, Dimnames = e1@Dimnames)
else
as.numeric(e2)
else if(le == 1 || le == d[1] || any(prod(d) == c(le, 0L))) { # matching dim
if(is(e1, "triangularMatrix")) {
r0 <- callGeneric(0, e2)
if(all0(r0)) { # result remains triangular
if(e1@diag == "U" && !all(1 == callGeneric(1,e2)))
e1 <- diagU2N(e1)
e1@x <- callGeneric(e1@x, e2)
e1
} else { ## result *general*
callGeneric(as(e1,"dgeMatrix"), e2)
}
} else { ## symmetric
if(le == 1) { ## result remains symmetric
e1@x <- callGeneric(e1@x, e2)
e1
} else { ## (le == d[1] || prod(d) == le)
## *might* remain symmetric, but 'x' may contain garbage
## *testing* for symmetry is also a bit expensive ==> simple:
callGeneric(as(e1,"dgeMatrix"), e2)
}
}
} else stop ("length of 2nd arg does not match dimension of first")
}
setMethod("Arith", signature(e1 = "ddenseMatrix", e2 = "numeric"), .Arith.denseM.atom)
setMethod("Arith", signature(e1 = "ddenseMatrix", e2 = "logical"), .Arith.denseM.atom)
setMethod("Arith", signature(e1 = "ddenseMatrix", e2 = "sparseVector"), .Arith.denseM.atom)
.Arith.atom.denseM <- function(e1, e2) {
d <- e2@Dim
## note that e2 is either symmetric or triangular here
le <- length(e1 <- as.vector(e1))
if(le == 0)
if(prod(d) == 0)
new(class2(class(e2), "d"), Dim = d, Dimnames = e2@Dimnames)
else
as.numeric(e1)
else if(le == 1 || le == d[1] || any(prod(d) == c(le, 0L))) { # matching dim
if(is(e2, "triangularMatrix")) {
r0 <- callGeneric(e1, 0)
if(all0(r0)) { # result remains triangular
if(e2@diag == "U" && !all(1 == callGeneric(e1,1)))
e2 <- diagU2N(e2)
e2@x <- callGeneric(e1, e2@x)
e2
} else { # result *general*
callGeneric(e1, as(e2,"dgeMatrix"))
}
} else { ## symmetric
if(le == 1) { # result remains symmetric
e2@x <- callGeneric(e1, e2@x)
e2
} else { ## (le == d[1] || prod(d) == le)
## *might* remain symmetric, but 'x' may contain garbage
## *testing* for symmetry is also a bit expensive ==> simple:
callGeneric(e1, as(e2,"dgeMatrix"))
}
}
} else stop ("length of 1st arg does not match dimension of 2nd")
}
## setMethod("Arith", signature(e1 = "numeric", e2 = "ddenseMatrix"),
## function(e1, e2) callGeneric(e1, as(e2, "dgeMatrix")))
setMethod("Arith", signature(e1 = "numeric", e2 = "ddenseMatrix"), .Arith.atom.denseM)
setMethod("Arith", signature(e1 = "logical", e2 = "ddenseMatrix"), .Arith.atom.denseM)
setMethod("Arith", signature(e1 = "sparseVector", e2 = "ddenseMatrix"), .Arith.atom.denseM)
## "Logic"
## -------
##-------- originally from ./ldenseMatrix.R --------------------
## These all had "Logic", now also for "Compare",
## but "Arith" differs: result will be "dgeMatrix' :
.Ops2dge.via.x <- function(e1,e2) {
dimCheck(e1, e2)
r <- copyClass(e1, "dgeMatrix", sNames = c("Dim","Dimnames"))
r@x <- as.numeric(callGeneric(e1@x, e2@x))
r
}
setMethod("Compare", signature(e1="lgeMatrix", e2="lgeMatrix"), .Ops.via.x)
setMethod("Logic", signature(e1="lgeMatrix", e2="lgeMatrix"), .Ops.via.x)
setMethod("Arith", signature(e1="lgeMatrix", e2="lgeMatrix"), .Ops2dge.via.x)
setMethod("Compare", signature(e1="ngeMatrix", e2="ngeMatrix"), .Ops.via.x)
setMethod("Logic", signature(e1="ngeMatrix", e2="ngeMatrix"), .Ops.via.x)
setMethod("Arith", signature(e1="ngeMatrix", e2="ngeMatrix"), .Ops2dge.via.x)
## FIXME: These lose symmmetry & triangularity
setMethod("Ops", signature(e1="ldenseMatrix", e2="ldenseMatrix"),
function(e1,e2) {
dimCheck(e1, e2)
callGeneric(as(e1, "lgeMatrix"), as(e2, "lgeMatrix"))
})
setMethod("Ops", signature(e1="ndenseMatrix", e2="ndenseMatrix"),
function(e1,e2) {
dimCheck(e1, e2)
callGeneric(as(e1, "ngeMatrix"), as(e2, "ngeMatrix"))
})
## nMatrix -> lMatrix conversions when "the other" is not nMatrix
## Use Ops.x.x unless both are sparse
setMethod("Ops", signature(e1="nMatrix", e2="lMatrix"), Ops.x.x)
setMethod("Ops", signature(e1="lMatrix", e2="nMatrix"), Ops.x.x)
setMethod("Ops", signature(e1="nMatrix", e2="dMatrix"), Ops.x.x)
setMethod("Ops", signature(e1="dMatrix", e2="nMatrix"), Ops.x.x)
## ... both are sparse: cannot use Ops.x.x
setMethod("Ops", signature(e1="nsparseMatrix", e2="lsparseMatrix"),
function(e1,e2) callGeneric(as(e1,"lMatrix"), e2))
setMethod("Ops", signature(e1="lsparseMatrix", e2="nsparseMatrix"),
function(e1,e2) callGeneric(e1, as(e2,"lMatrix")))
setMethod("Ops", signature(e1="nsparseMatrix", e2="dsparseMatrix"),
function(e1,e2) callGeneric(as(e1,"lMatrix"), e2))
setMethod("Ops", signature(e1="dsparseMatrix", e2="nsparseMatrix"),
function(e1,e2) callGeneric(e1, as(e2,"lMatrix")))
## Have this for "Ops" already above
## setMethod("Logic", signature(e1 = "logical", e2 = "Matrix"),
## function(e1, e2) callGeneric(e1, as(e2, "lMatrix")))
## setMethod("Logic", signature(e1 = "Matrix", e2 = "logical"),
## function(e1, e2) callGeneric(as(e1, "lMatrix"), e2))
.ll <- function(e1, e2) callGeneric(as(e1,"lMatrix"), as(e2, "lMatrix"))
setMethod("Logic", signature(e1 = "nMatrix", e2 = "Matrix"), .ll)
setMethod("Logic", signature(e1 = "Matrix", e2 = "nMatrix"), .ll)
setMethod("Logic", signature(e1 = "nMatrix", e2 = "nMatrix"), .ll)
rm(.ll)
### "ANY" here means "any non-Matrix" (since "Ops"(ANY) has already bailout above):
setMethod("Logic", signature(e1 = "ANY", e2 = "Matrix"),
function(e1, e2) callGeneric(as.logical(e1), as(e2, "lMatrix")))
setMethod("Logic", signature(e1 = "Matrix", e2 = "ANY"),
function(e1, e2) callGeneric(as(e1, "lMatrix"), as.logical(e2)))
## "swap RHS and LHS" and use the method below -- can do this, since
## "Logic" := { "&" , "|" } and both are commutative
for(Mcl in c("lMatrix","nMatrix","dMatrix"))
for(cl in c("logical", "numeric", "sparseVector"))
setMethod("Logic", signature(e1 = cl, e2 = Mcl),
function(e1,e2) callGeneric(e2, e1))
## conceivably "numeric" could use callGeneric(e2, as.logical(e1))
## but that's not useful at the moment, since Logic.Mat.atomic() does as.logical()
## This is parallel to Cmp.Mat.atomic() above ---> __keep parallel__ !
Logic.Mat.atomic <- function(e1, e2) { ## result will typically be "like" e1:
l2 <- length(e2 <- as.logical(e2))
n1 <- prod(d <- e1@Dim)
if(n1 && n1 < l2)
stop(sprintf(
"dim [product %d] do not match the length of object [%d]", n1, l2))
if(.Generic == "&" && l2 && allTrue (e2)) return(as(e1, "lMatrix"))
if(.Generic == "|" && l2 && allFalse(e2)) return(as(e1, "lMatrix"))
cl <- class(e1)
if(l2 == 0)
return(if(n1 == 0)
as(e1, class2(cl, "l"))# more expensive than (but working for "dgC*"):
## new(class2(cl, "l"), Dim = d, Dimnames = e1@Dimnames)
else
as.logical(e2))
## else
cl1 <- getClassDef(cl)
slots1 <- names(cl1@slots)
has.x <- any("x" == slots1)# *fast* check for "x" slot presence
if(l2 > 1 && has.x)
return(if(prod(d) == 0)
new(class2(cl, "l"), x = callGeneric(e1@x, e2),
Dim = d, Dimnames = e1@Dimnames)
else ## e2 cannot simply be compared with e1@x --> use another method
callGeneric(e1, Matrix(e2, nrow=d[1], ncol=d[2])))
## else
Udg <- extends(cl1, "triangularMatrix") && e1@diag == "U"
r0 <- callGeneric(0, e2)
## Udg: append the diagonal at *end*, as diagU2N():
r <- callGeneric(if(Udg) c(e1@x,..diag.x(e1)) else if(has.x) e1@x else TRUE, e2)
## trivial case first (beware of NA)
if(isTRUE(all(r0) && all(r))) {
r <- new(if(d[1] == d[2]) "lsyMatrix" else "lgeMatrix")
r@Dim <- d
r@Dimnames <- e1@Dimnames
r@x <- rep.int(TRUE, prod(d))
}
else if(extends(cl1, "denseMatrix")) {
full <- !.isPacked(e1) # << both "dtr" and "dsy" are 'full'
if(full || allFalse(r0) || extends(cl1, "symmetricMatrix")) {
isTri <- extends(cl1, "triangularMatrix")
if(isTri) {
if(extends1of(cl1, c("Cholesky","BunchKaufman")))
cl1 <- getClassDef(cl <- class(e1 <- as(e1, "dtrMatrix")))
}
## FIXME? using copyClass() to copy "relevant" slots
r <- new(class2(cl, "l"), x = r, Dim = d, Dimnames = e1@Dimnames)
if(extends(cl1, "symmetricMatrix")) {
r@uplo <- e1@uplo
} else if(isTri) {
r@uplo <- e1@uplo
r@diag <- e1@diag
}
}
else { ## packed matrix with structural 0 and r0 is not all FALSE:
##--> result cannot be packed anymore
## [dense & packed & not symmetric ] ==> must be "ltp*" :
if(!extends(cl1, "ltpMatrix"))
stop("internal bug in \"Logic\" method (Logic.Mat.atomic); please report")
rx <- rep_len(r0, prod(d))
rx[indTri(d[1], upper = (e1@uplo == "U"), diag=TRUE)] <- r
r <- new("lgeMatrix", x = rx, Dim = d, Dimnames = e1@Dimnames)
}
}
else { ##---- e1 is(. , sparseMatrix) -----------------
## FIXME: remove this test eventually
if(extends(cl1, "diagonalMatrix"))
stop("Logic.Mat.atomic() should not be called for diagonalMatrix")
remainSparse <- allFalse(r0) ## <==> things remain sparse
if(Udg) { # e1 *is* unit-diagonal (triangular sparse)
r1 <- callGeneric(1, e2)
Udg <- all(r1) # maybe Unit-diagonal (sparse) result
## if(!remainSparse) we'll use non0ind() which *has* unit-diag. indices at end
##
if(Udg && remainSparse) {
} else { ## result will not be unit-diagonal sparse
e1 <- .diagU2N(e1, cl = cl1) # otherwise, result is U-diag
if(extends(cl1, "CsparseMatrix")) {
## repeat computation if e1 has changed
r <- callGeneric(if(has.x) e1@x else TRUE, e2)
}
}
}
if(remainSparse) {
if(!anyNA(r) && ((Ar <- all(r)) || !any(r))) {
lClass <- class2(cl, "l") # is "lsparse*"
r <- new(lClass)
r@Dim <- d
r@Dimnames <- e1@Dimnames
if(Ar) { # 'TRUE' instead of 'x': same sparsity:
for(n in intersect(c("i","j","p","uplo","diag"), slots1))
slot(r, n) <- slot(e1, n)
n <- if(has.x) length(e1@x) else if(any("p" == slots1))
e1@p[d[2]+1L] else length(e1@i)
r@x <- rep.int(TRUE, n)
}
else { ## !any(r): all FALSE: keep empty 'r' matrix
## but may need a valid 'pointer' slot:
if(extends(lClass, "CsparseMatrix"))
r@p <- rep.int(0L, 1+ncol(r))
else if(extends(lClass, "RsparseMatrix"))
r@p <- rep.int(0L, 1+nrow(r))
}
} else { # some TRUE, FALSE, NA : go via unique 'Tsparse'
M <- asTuniq(e1)
nCl <- class2(class(M), 'l') # logical Tsparse
sN <- slotNames(nCl)
## copy "the other slots" (important for "tr"/"sym"):
r <- copyClass(M, nCl, sNames = sN[is.na(match(sN, "x"))])
r@x <- callGeneric(if(has.x) M@x else TRUE, e2)
if(extends(cl1, "CsparseMatrix"))
r <- as(r, "CsparseMatrix")
else if(extends(cl1, "RsparseMatrix"))
r <- as(r, "RsparseMatrix")
}
}
else { ## non sparse result
lClass <- if(extends(cl1, "symmetricMatrix"))
"lsyMatrix" else "lgeMatrix"
Matrix.msg(sprintf("sparse to dense (%s) coercion in '%s' -> %s",
lClass, .Generic, "Logic.Mat.atomic"), .M.level = 2)
rx <- rep_len(r0, prod(d))
## Here, we assume that 'r' and the indices align (!)
encI <- .Call(m_encodeInd,
non0ind(e1, cl1, uniqT=FALSE, xtendSymm=FALSE),
di = d, orig1=FALSE, checkBounds=FALSE)
rx[1L + encI] <- r
r <- new(lClass, x = rx, Dim = d, Dimnames = e1@Dimnames)
}
}
r
}
for(Mcl in c("lMatrix","nMatrix","dMatrix"))
for(cl in c("logical", "numeric", "sparseVector"))
setMethod("Logic", signature(e1 = Mcl, e2 = cl), Logic.Mat.atomic)
### -- II -- sparse ----------------------------------------------------------
## Have lgC o lgC and then lgT o lgT Logic - quite similarly -
## also lsC o * and ltC o * :
## Here's the common functionality
.do.Logic.lsparse <- function(e1,e2, d, dn, isOR, ij1, ij2) {
## NB non-diagonalMatrix := Union{ general, symmetric, triangular}
gen1 <- extends(cD1 <- getClassDef(class(e1)), "generalMatrix")
gen2 <- extends(cD2 <- getClassDef(class(e2)), "generalMatrix")
sym1 <- !gen1 && extends(cD1, "symmetricMatrix")
sym2 <- !gen2 && extends(cD2, "symmetricMatrix")
tri1 <- !gen1 && !sym1
tri2 <- !gen2 && !sym2
G <- gen1 && gen2
S <- sym1 && sym2 && e1@uplo == e2@uplo
T <- tri1 && tri2 && e1@uplo == e2@uplo
if(T && e1@diag != e2@diag) {
## one is "U" the other "N"
if(e1@diag == "U")
e1 <- diagU2N(e1)
else ## (e2@diag == "U"
e2 <- diagU2N(e2)
shape <- "t"
}
else if(!G && !S && !T) {
## e.g. one symmetric, one general
## coerce to generalMatrix and go :
if(!gen1) e1 <- as(e1, "generalMatrix", strict = FALSE)
if(!gen2) e2 <- as(e2, "generalMatrix", strict = FALSE)
shape <- "g"
} else {
shape <- if(T) "t" else if(S) "s" else "g"
}
ii <- WhichintersectInd(ij1, ij2, di=d)
I1 <- ii[[1]] ; has1 <- length(I1) > 0
I2 <- ii[[2]] ; has2 <- length(I2) > 0
## 1) common indices
i <- ij1[I1, 1]
j <- ij1[I1, 2]
if(isOR) { ## i.e. .Generic == "|" i.e. not "&"
x <- e1@x[I1] | e2@x[I2]
## 2) "e1 o FALSE":
x2 <- if(has1) e1@x[- I1] else e1@x # == callGeneric(e1@x[- I1], FALSE)
## 3) "0 o e1":
x3 <- if(has2) e2@x[- I2] else e2@x # == callGeneric(FALSE, e2@x[- I2])
i <- c(i,
if(has1) ij1[-I1, 1] else ij1[, 1],
if(has2) ij2[-I2, 1] else ij2[, 1])
j <- c(j,
if(has1) ij1[-I1, 2] else ij1[, 2],
if(has2) ij2[-I2, 2] else ij2[, 2])
x <- c(x, x2, x3)
} else { ## AND
x <- e1@x[I1] & e2@x[I2]
}
if(any(!(x. <- x | is.na(x)))) { ## drop 'FALSE's
i <- i[x.]
j <- j[x.]
x <- x[x.]
}
new(paste0("l",shape,"TMatrix"), Dim = d, Dimnames = dn,
i = i, j = j, x = x)
}
Logic.lCMat <- function(e1, e2, isOR) {
stopifnot(is.logical(isOR))
d <- dimCheck(e1, e2)
dn <- dimNamesCheck(e1, e2)
## Very easy case first :
if(identical(e1@i, e2@i) && identical(e1@p, e2@p)) {
e1@x <- if(isOR) e1@x | e2@x else e1@x & e2@x
return(e1)
}
## else :
.Call(Tsparse_to_Csparse,
.do.Logic.lsparse(e1, e2, d = d, dn = dn, isOR = isOR,
ij1 = .Call(compressed_non_0_ij, e1, TRUE),
ij2 = .Call(compressed_non_0_ij, e2, TRUE)),
FALSE)
}
m.Logic.lCMat <- function(e1, e2) Logic.lCMat(e1, e2, isOR = .Generic == "|")
Logic.lTMat <- function(e1,e2) {
d <- dimCheck(e1, e2)
dn <- dimNamesCheck(e1, e2)
## Very easy case first :
if(identical(e1@i, e2@i) && identical(e1@j, e2@j)) {
e1@x <- callGeneric(e1@x, e2@x)
return(e1)
}
## else :
cld <- getClassDef(class(e1))
.do.Logic.lsparse(e1, e2, d = d, dn = dn,
isOR = .Generic == "|",
ij1 = non0ind(e1, cld),
ij2 = non0ind(e2, cld))
}
setMethod("Logic", signature(e1="lgCMatrix", e2="lgCMatrix"), m.Logic.lCMat)
setMethod("Logic", signature(e1="lgTMatrix", e2="lgTMatrix"), Logic.lTMat)
setMethod("Logic", signature(e1 = "lsCMatrix", e2 = "lsCMatrix"),
function(e1, e2) {
if(e1@uplo == e2@uplo) Logic.lCMat(e1, e2, isOR = .Generic == "|")
else Logic.lCMat(e1, t(e2), isOR = .Generic == "|")
})
setMethod("Logic", signature(e1 = "ltCMatrix", e2 = "ltCMatrix"),
function(e1, e2) {
if(e1@uplo == e2@uplo) {
if(e1@diag == e2@diag) ## both "N" or both "U" (!)
Logic.lCMat(e1, e2, isOR = .Generic == "|")
else if(e1@diag == "U")
Logic.lCMat(diagU2N(e1), e2, isOR = .Generic == "|")
else ## e1@diag == "N" *and* e2@diag == "U"
Logic.lCMat(e1, diagU2N(e2), isOR = .Generic == "|")
}
else {
d <- dimCheck(e1, e2)
## differing triangle (upper <-> lower):
## all will be FALSE apart from diagonal
as(.diag2tT(new("ldiMatrix", Dim=d,
x = get(.Generic)(diag(e1), diag(e2))),
uplo = e1@uplo, kind = "l"),
"dtCMatrix")
}
})
## Now the other "Ops" for the "lgT" and "lgC" cases:
setMethod("Arith", signature(e1="lgCMatrix", e2="lgCMatrix"),
function(e1, e2) callGeneric(as(e1, "dgCMatrix"), as(e2, "dgCMatrix")))
setMethod("Arith", signature(e1="lgTMatrix", e2="lgTMatrix"),
function(e1, e2) callGeneric(as(e1, "dgTMatrix"), as(e2, "dgTMatrix")))
## More generally: Arith: l* and n* via d*
setMethod("Arith", signature(e1="lsparseMatrix", e2="Matrix"),
function(e1, e2) callGeneric(as(e1, "dMatrix"), as(e2,"dMatrix")))
setMethod("Arith", signature(e1="Matrix", e2="lsparseMatrix"),
function(e1, e2) callGeneric(as(e1, "dMatrix"), as(e2,"dMatrix")))
setMethod("Arith", signature(e1="nsparseMatrix", e2="Matrix"),
function(e1, e2) callGeneric(as(e1, "dMatrix"), as(e2,"dMatrix")))
setMethod("Arith", signature(e1="Matrix", e2="nsparseMatrix"),
function(e1, e2) callGeneric(as(e1, "dMatrix"), as(e2,"dMatrix")))
##
for(cl in c("numeric", "logical")) # "complex", "raw" : basically "replValue"
for(Mcl in c("lMatrix", "nMatrix")) {
setMethod("Arith", signature(e1=Mcl, e2=cl),
function(e1, e2) callGeneric(as(e1, "dMatrix"), e2))
setMethod("Arith", signature(e1=cl, e2=Mcl),
function(e1, e2) callGeneric(e1, as(e2,"dMatrix")))
}
rm(cl, Mcl)
## FIXME: These are really too cheap: currently almost all go via dgC*() :
## setMethod("Compare", signature(e1="lgCMatrix", e2="lgCMatrix"),
## setMethod("Compare", signature(e1="lgTMatrix", e2="lgTMatrix"),
## setMethod("Compare", signature(e1="lsparseMatrix", e2="lsparseMatrix"),
## function(e1, e2) callGeneric(as(e1, "dgCMatrix"), as(e2, "dgCMatrix")))
##. Have "Ops" below which only goes *conditionally* via Csparse
##. setMethod("Compare", signature(e1="lsparseMatrix", e2="lsparseMatrix"),
##. function(e1, e2) callGeneric(as(e1, "CsparseMatrix"),
##. as(e2, "CsparseMatrix")))
## setMethod("Compare", signature(e1="lgTMatrix", e2="lgTMatrix"), ## coerce to Csparse
## function(e1, e2) callGeneric(as(e1, "dgCMatrix"), as(e2, "dgCMatrix")))
###--- Sparse ... ----------
setMethod("Ops", signature(e1="lsparseMatrix", e2="lsparseMatrix"),
function(e1,e2) callGeneric(as(e1, "CsparseMatrix"), as(e2, "CsparseMatrix")))
setMethod("Logic", signature(e1="lsparseMatrix", e2="ldenseMatrix"),
function(e1,e2) callGeneric(as(e1, "generalMatrix"), as(e2, "sparseMatrix")))
setMethod("Logic", signature(e1="ldenseMatrix", e2="lsparseMatrix"),
function(e1,e2) callGeneric(as(e1, "sparseMatrix"), as(e2, "generalMatrix")))
setMethod("Logic", signature(e1="lsparseMatrix", e2="lsparseMatrix"),
function(e1,e2) {
if(!is(e1,"generalMatrix"))
callGeneric(as(as(e1, "generalMatrix"), "CsparseMatrix"), e2)
else if(!is(e2,"generalMatrix"))
callGeneric(e1, as(as(e2, "generalMatrix"), "CsparseMatrix"))
else callGeneric(as(e1, "lgCMatrix"), as(e2, "lgCMatrix"))
})
## FIXME: also want (symmetric o symmetric) , (triangular o triangular)
## -----
setMethod("Arith", signature(e1 = "dsCMatrix", e2 = "dsCMatrix"),
function(e1, e2) {
Matrix.msg("suboptimal 'Arith' implementation of 'dsC* o dsC*'")
forceSymmetric(callGeneric(as(e1, "dgCMatrix"), as(e2, "dgCMatrix")))
})
##-------- originally from ./dgCMatrix.R --------------------
.Arith.Csparse <- function(e1, e2, Generic, class., triangular = FALSE, check.dimnames = TRUE)
{
## Generic is one of "+", "-", "*", "^", "%%", "%/%", "/"
## triangular: TRUE iff e1,e2 are triangular _and_ e1@uplo == e2@uplo
d <- dimCheck(e1, e2)
dn <- dimNamesCheck(e1, e2, check = check.dimnames)
if(triangular) {
## need these for the 'x' slots in any case
if (e1@diag == "U") e1 <- .Call(Csparse_diagU2N, e1)
if (e2@diag == "U") e2 <- .Call(Csparse_diagU2N, e2)
## slightly more efficient than non0.i() or non0ind():
ij1 <- .Call(compressed_non_0_ij, e1, isC=TRUE)
ij2 <- .Call(compressed_non_0_ij, e2, isC=TRUE)
newTMat <- function(i,j,x)
new("dtTMatrix", Dim = d, Dimnames = dn, i = i, j = j, x = x,
uplo = e1@uplo)
dmat <- "dtrMatrix"
} else {
cld <- getClassDef(class.)
ij1 <- non0ind(e1, cld)
ij2 <- non0ind(e2, cld)
newTMat <- function(i,j,x)
new("dgTMatrix", Dim = d, Dimnames = dn, i = i, j = j, x = x)
dmat <- "dgeMatrix"
}
switch(Generic,
"+" = , "-" = {
## care for over-allocated 'x' slot:
nc1 <- d[2] + 1L
if((nz <- e1@p[nc1]) < length(e1@x)) e1@x <- e1@x[seq_len(nz)]
if((nz <- e2@p[nc1]) < length(e2@x)) e2@x <- e2@x[seq_len(nz)]
## special "T" convention: repeated entries are *summed*
.Call(Tsparse_to_Csparse,
newTMat(i = c(ij1[,1], ij2[,1]),
j = c(ij1[,2], ij2[,2]),
x = if(Generic == "+") c(e1@x, e2@x) else c(e1@x, - e2@x)),
triangular)
},
"*" =
{ ## X * 0 == 0 * X == 0 --> keep common non-0
ii <- WhichintersectInd(ij1, ij2, di=d)
ij <- ij1[ii[[1]], , drop = FALSE]
.Call(Tsparse_to_Csparse,
newTMat(i = ij[,1],
j = ij[,2],
x = e1@x[ii[[1]]] * e2@x[ii[[2]]]),
triangular)
},
"^" =
{
ii <- WhichintersectInd(ij1, ij2, di=d)
## 3 cases:
## 1) X^0 := 1 (even for X=0) ==> dense
## 2) 0^Y := 0 for Y != 0 =====
## 3) x^y :
## FIXME: dgeM[cbind(i,j)] <- V is not yet possible
## nor dgeM[ i_vect ] <- V
## r <- as(e2, "dgeMatrix")
## ...
r <- as(e2, "matrix")
Yis0 <- is0(r)
r[complementInd(ij1, dim=d)] <- 0 ## 2)
r[1L + ij2[ii[[2]], , drop=FALSE]] <-
e1@x[ii[[1]]] ^ e2@x[ii[[2]]] ## 3)
r[Yis0] <- 1 ## 1)
as(r, dmat)
},
"%%" = , "%/%" = , "/" = ## 0 op 0 |-> NaN => dense
get(Generic)(as(e1, dmat), e2)
)# end{switch(..)}
}
setMethod("Arith", signature(e1 = "dgCMatrix", e2 = "dgCMatrix"),
function(e1,e2) .Arith.Csparse(e1,e2, .Generic, class.= "dgCMatrix"))
setMethod("Arith", signature(e1 = "dtCMatrix", e2 = "dtCMatrix"),
function(e1, e2) {
U1 <- e1@uplo
isTri <- U1 == e2@uplo && .Generic != "^" # will the result definitely be triangular?
if(isTri) {
.Arith.Csparse(e1,e2, .Generic, class. = "dtCMatrix",
triangular = TRUE)
}
else { ## lowerTri o upperTri: |--> "all 0" {often} -- FIXME?
.Arith.Csparse(as(e1, "dgCMatrix"), as(e2, "dgCMatrix"),
.Generic, class.= "dgCMatrix")
}
})
## TODO : Consider going a level up, and do this for all "Ops"
##
## NB: For "dgCMatrix" have special method ==> this is for dsC*, lgC*, ...
## now also for Tsparse etc {*must* as method directly: "callGeneric()"}
.Arith.CM.atom <- function(e1, e2) {
if(length(e2) == 1) { ## e.g., Mat ^ a
f0 <- callGeneric(0, e2)
if(is0(f0)) { ## remain sparse, symm., tri.,...
e1 <- as(e1, "dMatrix")
if(!extends(cld <- getClassDef(class(e1)), "CsparseMatrix"))
cld <- getClassDef(class(e1 <- as(e1, "CsparseMatrix")))
if(extends(cld, "triangularMatrix") &&
e1@diag == "U" && !all(1 == callGeneric(1, e2)))
e1 <- .diagU2N(e1, cld)
e1@x <- callGeneric(e1@x, e2)
if(extends(cld, "compMatrix") && length(e1@factors))
## TODO: be much smarter and try *updating* (some) 'factors':
e1@factors <- list()
return(e1)
}
}
## all other (potentially non-sparse) cases: give up symm, tri,..
callGeneric(as(as(as(e1, "dMatrix"), "CsparseMatrix"), "dgCMatrix"), e2)
}
## The same, e1 <-> e2 :
.Arith.atom.CM <- function(e1, e2) {
if(length(e1) == 1) {
f0 <- callGeneric(e1, 0)
if(is0(f0)) {
e2 <- as(e2, "dMatrix")
if(!extends(cld <- getClassDef(class(e2)), "CsparseMatrix"))
cld <- getClassDef(class(e2 <- as(e2, "CsparseMatrix")))
if(extends(cld, "triangularMatrix") &&
e2@diag == "U" && !all(1 == callGeneric(e1, 1)))
e2 <- .diagU2N(e2, cld)
e2@x <- callGeneric(e1, e2@x)
if(extends(cld, "compMatrix") && length(e2@factors))
## TODO: be much smarter and try *updating* (some) 'factors':
e2@factors <- list()
return(e2)
}
}
callGeneric(e1, as(as(as(e2, "dMatrix"), "CsparseMatrix"), "dgCMatrix"))
}
setMethod("Arith", signature(e1 = "CsparseMatrix", e2 = "numeric"), .Arith.CM.atom)
setMethod("Arith", signature(e1 = "numeric", e2 = "CsparseMatrix"), .Arith.atom.CM)
##' compute indices for recycling <numeric> of length 'len' to match sparseMatrix 'spM'
.Ops.recycle.ind <- function(spM, len) {
n <- prod(d <- dim(spM))
if(n && n < len) stop("vector too long in Matrix - vector operation")
if(n %% len != 0) ## identical warning as in main/arithmetic.c
warning("longer object length\n\tis not a multiple of shorter object length")
## TODO(speedup!): construction of [1L + in0 %%len] via one .Call()
in0 <- .Call(m_encodeInd, .Call(compressed_non_0_ij, spM, TRUE),
d, FALSE, FALSE)
1L + in0 %% len
}
A.M.n <- function(e1, e2) {
if((l2 <- length(e2)) == 0) # return 0-vector of e1's kind, as matrix()+<0>
return(if(length(e1)) vector(.type.kind[.M.kind(e1)]) else e1)
is0f <- is0(f0 <- callGeneric(0, e2)) #
if(all(is0f)) { ## result keeps sparseness structure of e1
if(l2 > 1) { # "recycle" e2 "carefully"
e2 <- e2[.Ops.recycle.ind(e1, len = l2)]
}
e1@x <- callGeneric(e1@x, e2)
if(length(e1@factors)) # TODO: be smarter and try *updating* (some) 'factors':
e1@factors <- list()
e1
} else if(mean(is0f) > 7/8) { ## remain sparse ['7/8' is *somewhat* arbitrary]
if(l2 > 1) ## as not all callGeneric(0, e2) is 0, e2 is typically sparse
callGeneric(e1, as(e2, "sparseVector"))
else { ## l2 == 1: e2 is "scalar"
e1@x <- callGeneric(e1@x, e2)
if(length(e1@factors)) # TODO: be smarter (see above)
e1@factors <- list()
e1
}
}
else { ## non-sparse, since '0 o e2' is not (all) 0
r <- as(e1, "matrix")
if(l2 == 1) {
r[] <- f0
r[non0ind(e1, getClassDef("dgCMatrix")) + 1L] <- callGeneric(e1@x, e2)
..2dge(r)
} else {
as(callGeneric(r, e2), "dgeMatrix")
}
}
}
setMethod("Arith", signature(e1 = "dgCMatrix", e2 = "numeric"), A.M.n)
setMethod("Arith", signature(e1 = "dgCMatrix", e2 = "logical"), A.M.n)
## coercing to "general*" / "dgC*" would e.g. lose symmetry of 'S * 3'
setMethod("Arith", signature(e1 = "dsparseMatrix", e2 = "numeric"), .Arith.CM.atom)
setMethod("Arith", signature(e1 = "dsparseMatrix", e2 = "logical"), .Arith.CM.atom)
A.n.M <- function(e1, e2) {
if((l1 <- length(e1)) == 0) # return 0-vector of e2's kind, as <0> + matrix()
return(if(length(e2)) vector(.type.kind[.M.kind(e2)]) else e2)
is0f <- is0(f0 <- callGeneric(e1, 0))
if(all(is0f)) { ## result keeps sparseness structure of e2
if(l1 > 1) { # "recycle" e1 "carefully"
e1 <- e1[.Ops.recycle.ind(e2, len = l1)]
}
e2@x <- callGeneric(e1, e2@x)
if(length(e2@factors))# TODO: be much smarter and try *updating* (some) 'factors':
e2@factors <- list()
e2
} else if(mean(is0f) > 7/8) { ## remain sparse ['7/8' is *somewhat* arbitrar
if(l1 > 1) ## as not all callGeneric(e1, 0) is 0, e1 is typically sparse
callGeneric(as(e1, "sparseVector"), e2)
else { ## l1 == 1: e1 is "scalar"
e2@x <- callGeneric(e1, e2@x)
if(length(e2@factors))# TODO: be much smarter (see above)
e2@factors <- list()
e2
}
}
else { ## non-sparse, since '0 o e2' is not (all) 0
r <- as(e2, "matrix")
if(l1 == 1) {
r[] <- f0
r[non0ind(e2, getClassDef("dgCMatrix")) + 1L] <-
callGeneric(e1, e2@x)
..2dge(r)
} else {
as(callGeneric(e1, r), "dgeMatrix")
}
}
}
setMethod("Arith", signature(e1 = "numeric", e2 = "dgCMatrix"), A.n.M)
setMethod("Arith", signature(e1 = "logical", e2 = "dgCMatrix"), A.n.M)
## coercing to "general*" / "dgC*" would e.g. lose symmetry of '3 * S'
setMethod("Arith", signature(e1 = "numeric", e2 = "dsparseMatrix"), .Arith.atom.CM)
setMethod("Arith", signature(e1 = "logical", e2 = "dsparseMatrix"), .Arith.atom.CM)
rm(A.M.n, A.n.M)
##-------- originally from ./Csparse.R --------------------
setMethod("Arith", signature(e1 = "CsparseMatrix", e2 = "CsparseMatrix"),
function(e1, e2) {
## go via "symmetric" if both are symmetric, etc...
s1 <- .M.shape(e1, getClassDef(class(e1)))
s2 <- .M.shape(e2, getClassDef(class(e2)))
viaCl <- paste0("d", if(s1 == s2) s1 else "g", "CMatrix")
callGeneric(as(as(e1, "dMatrix"), viaCl),
as(as(e2, "dMatrix"), viaCl))
})
setMethod("Logic", signature(e1 = "CsparseMatrix", e2 = "CsparseMatrix"),
function(e1, e2) {
## go via "symmetric" if both are symmetric, etc...
s1 <- .M.shape(e1, getClassDef(class(e1)))
s2 <- .M.shape(e2, getClassDef(class(e2)))
viaCl <- paste0("l", if(s1 == s2) s1 else "g", "CMatrix")
callGeneric(as(as(e1, "lMatrix"), viaCl),
as(as(e2, "lMatrix"), viaCl))
})
setMethod("Compare", signature(e1 = "CsparseMatrix", e2 = "CsparseMatrix"),
function(e1, e2) {
d <- dimCheck(e1,e2)
## How do the "0" or "FALSE" entries compare?
## Depends if we have an "EQuality RELation" or not:
EQrel <- switch(.Generic,
"==" =, "<=" =, ">=" = TRUE,
"!=" =, "<" =, ">" = FALSE)
if(EQrel) {
## The (0 op 0) or (FALSE op FALSE) comparison gives TRUE
## -> result becomes *dense*; the following may be suboptimal
return( callGeneric(as(e1, "denseMatrix"),
as(e2, "denseMatrix")))
}
## else: INequality: 0 op 0 gives FALSE ---> remain sparse!
cD1 <- getClassDef(class(e1))
cD2 <- getClassDef(class(e2))
Matrix.msg(sprintf("Compare <Csparse> -- \"%s\" %s \"%s\" :\n",
cD1@className, .Generic,
cD2@className), .M.level = 2)
## NB non-diagonalMatrix := Union{ general, symmetric, triangular}
gen1 <- extends(cD1, "generalMatrix")
gen2 <- extends(cD2, "generalMatrix")
sym1 <- !gen1 && extends(cD1, "symmetricMatrix")
sym2 <- !gen2 && extends(cD2, "symmetricMatrix")
tri1 <- !gen1 && !sym1
tri2 <- !gen2 && !sym2
G <- gen1 && gen2
S <- sym1 && sym2 && e1@uplo == e2@uplo
T <- tri1 && tri2 && e1@uplo == e2@uplo
if(T && e1@diag != e2@diag) {
## one is "U" the other "N"
if(e1@diag == "U")
e1 <- diagU2N(e1)
else ## (e2@diag == "U"
e2 <- diagU2N(e2)
shape <- "t"
}
else if(!G && !S && !T) {
## e.g. one symmetric, one general
## coerce to generalMatrix and go :
if(!gen1) e1 <- as(e1, "generalMatrix", strict = FALSE)
if(!gen2) e2 <- as(e2, "generalMatrix", strict = FALSE)
shape <- "g"
} else {
shape <- if(T) "t" else if(S) "s" else "g"
}
dn <- dimNamesCheck(e1, e2) ## <- FIXME: for 'S'; allow staying
## the result object:
newC <- sub("^.", "l", MatrixClass(class(e1)))
## FIXME: "n" result when e1 & e2 are "n", or even whenever possible
r <- new(newC)
e1is.n <- extends(cD1, "nMatrix")
e2is.n <- extends(cD2, "nMatrix")
## Easy case: identical sparsity pattern
if(identical(e1@i, e2@i) && identical(e1@p, e2@p)) {
if(e1is.n) {
if(e2is.n)
## non-equality of identical pattern matrices: all FALSE
r@p <- rep.int(0L, d[2]+1L) # and r@i, r@x remain empty
else { ## e1 pattern, e2@x
rx <- callGeneric(TRUE, e2@x)
if(allFalse(rx))
r@p <- rep.int(0L, d[2]+1L) # and r@i, r@x remain empty
else {
r@x <- rx
r@i <- e2@i
r@p <- e2@p
}
}
} else if(e2is.n) { ## e1@x, e2 pattern
rx <- callGeneric(e1@x, TRUE)
if(allFalse(rx))
r@p <- rep.int(0L, d[2]+1L) # and r@i, r@x remain empty
else {
r@x <- rx
r@i <- e1@i
r@p <- e1@p
}
} else { # both have 'x' slot
r@x <- callGeneric(e1@x, e2@x)
## and all others are '0 op 0' which give FALSE
r@i <- e1@i
r@p <- e1@p
}
r@Dim <- d
r@Dimnames <- dn
r
}
else {
## now the 'x' slots ``match'' insofar as they are for the
## same "space" (triangle for tri* and symm*; else rectangle)
## not non0ind() which gives more;
## want only those which correspond to 'x' slot
ij1 <- .Call(compressed_non_0_ij, e1, TRUE)
ij2 <- .Call(compressed_non_0_ij, e2, TRUE)
ii <- WhichintersectInd(ij1, ij2, di=d)
I1 <- ii[[1]]; has1 <- length(I1) > 0
I2 <- ii[[2]]; has2 <- length(I2) > 0
## potentially could be faster for 'nsparse' but this is simple:
e1x <- if(e1is.n) rep.int(1L, length(e1@i)) else e1@x
e2x <- if(e2is.n) rep.int(1L, length(e2@i)) else e2@x
## 1) common
x <- callGeneric(e1x[I1],
e2x[I2])
## 2) "e1 o 0":
x2 <- callGeneric(if(has1) e1x[- I1] else e1x, 0)
## 3) "0 o e2":
x3 <- callGeneric(0, if(has2) e2x[- I2] else e2x)
i <- c(ij1[I1, 1],
if(has1) ij1[-I1, 1] else ij1[, 1],
if(has2) ij2[-I2, 1] else ij2[, 1])
j <- c(ij1[I1, 2],
if(has1) ij1[-I1, 2] else ij1[, 2],
if(has2) ij2[-I2, 2] else ij2[, 2])
x <- c(x, x2, x3)
if(any(i0x <- is0(x))) { # drop 'FALSE's
n0 <- !i0x
i <- i[n0]
j <- j[n0]
x <- x[n0]
}
.Call(Tsparse_to_Csparse,
if(e1is.n && e2is.n)
new(paste0("n",shape,"TMatrix"), Dim = d,
Dimnames = dn, i = i, j = j)
else new(paste0("l",shape,"TMatrix"), Dim = d,
Dimnames = dn, i = i, j = j, x = x),
FALSE)
}
})
##-------- originally from ./sparseMatrix.R --------------------
## "Arith" short cuts / exceptions
setMethod("-", signature(e1 = "sparseMatrix", e2 = "missing"),
function(e1, e2) {
e1 <- diagU2N(e1)
e1@x <- -e1@x
e1@factors <- list()# Drop Cholesky factors; TODO: Consider to modify & keep LU
e1
})
## with the following exceptions:
setMethod("-", signature(e1 = "nsparseMatrix", e2 = "missing"),
function(e1,e2) callGeneric(as(as(as(e1, "CsparseMatrix"), "dMatrix"), "dgCMatrix")))
setMethod("-", signature(e1 = "pMatrix", e2 = "missing"),
function(e1,e2) callGeneric(as(e1, "ngTMatrix")))
## Group method "Arith"
## have CsparseMatrix methods above
## which may preserve "symmetric", "triangular" -- simply defer to those:
setMethod("Ops", signature(e1 = "sparseMatrix", e2 = "nsparseMatrix"),
function(e1, e2) callGeneric(as(e1, "CsparseMatrix"),
as(e2, "lsparseMatrix")))
setMethod("Ops", signature(e1 = "nsparseMatrix", e2 = "sparseMatrix"),
function(e1, e2) callGeneric(as(e1, "lsparseMatrix"),
as(e2, "CsparseMatrix")))
## these were 'Arith', now generalized:
if(FALSE) { ## just shifts the ambiguity warnings ..
## <sparse> o <sparse> more complicated - against PITA disambiguation warnings:
setMethod("Ops", signature(e1 = "TsparseMatrix", e2 = "TsparseMatrix"),
function(e1, e2) callGeneric(as(e1, "CsparseMatrix"),
as(e2, "CsparseMatrix")))
setMethod("Ops", signature(e1 = "TsparseMatrix", e2 = "CsparseMatrix"),
function(e1, e2) callGeneric(as(e1, "CsparseMatrix"), e2))
setMethod("Ops", signature(e1 = "CsparseMatrix", e2 = "TsparseMatrix"),
function(e1, e2) callGeneric(e1, as(e2, "CsparseMatrix")))
}
## catch the rest: Rsparse* and T* o R*
setMethod("Ops", signature(e1 = "sparseMatrix", e2 = "sparseMatrix"),
function(e1, e2) callGeneric(as(e1, "CsparseMatrix"),
as(e2, "CsparseMatrix")))
setMethod("Ops", signature(e1 = "sparseMatrix", e2 = "numeric"),
function(e1, e2) callGeneric(as(e1, "CsparseMatrix"), e2))
setMethod("Ops", signature(e1 = "numeric", e2 = "sparseMatrix"),
function(e1, e2) callGeneric(e1, as(e2, "CsparseMatrix")))
## setMethod("Compare", signature(e1 = "sparseMatrix", e2 = "sparseMatrix"),
## function(e1, e2) callGeneric(as(e1, "CsparseMatrix"),
## as(e2, "CsparseMatrix")))
###-------- sparseVector -------------
###-------- ============ -------------
## Catch all remaining
setMethod("Ops", signature(e1 = "sparseVector", e2 = "ANY"),
function(e1, e2) .bail.out.2(.Generic, class(e1), class(e2)))
setMethod("Ops", signature(e1 = "ANY", e2 = "sparseVector"),
function(e1, e2) .bail.out.2(.Generic, class(e1), class(e2)))
## 1) spVec o (sp)Vec : -------------
## FIXME:
## 2. <spVec> o <non-NA numeric> should also happen directly and
## |-> sparse for o = {'*', "/", '&&', '==', ...
setMethod("Ops", signature(e1 = "sparseVector", e2 = "atomicVector"),
function(e1, e2) {
if(length(e2) == 1) { ## scalar ------ special case - "fast"
if(all0(callGeneric(FALSE, e2))) { # result remains sparse
if(is(e1, "nsparseVector")) { # no 'x' slot, i.e. all TRUE
r <- callGeneric(TRUE, e2)
if(is.logical(r)) {
if(isTRUE(all(r))) # (could be NA)
e1 # result unchanged
else
newSpVec("lsparseVector", x = r, e1)
} else {
newSpVec(paste0(if(is.integer(r)) "i" else "d", "sparseVector"),
x = r, e1)
}
} else { # has x slot
r <- callGeneric(e1@x, e2)
if(identical(class(r), class(e1@x))) {
e1@x <- r
e1
} else {
newSpVec(paste0(.V.kind(r), "sparseVector"), x = r, e1)
}
}
}
else ## non-sparse result
callGeneric(sp2vec(e1), e2)
}
else ## e2 is not scalar
callGeneric(e1, as(e2, "sparseVector"))
})
setMethod("Ops", signature(e1 = "atomicVector", e2 = "sparseVector"),
function(e1, e2) {
if(length(e1) == 1) { ## scalar ------ special case - "fast"
if(all0(callGeneric(e1, FALSE))) { # result remains sparse
if(is(e2, "nsparseVector")) { # no 'x' slot, i.e. all TRUE
r <- callGeneric(e1, TRUE)
if(is.logical(r)) {
if(isTRUE(all(r))) # (could be NA)
e2 # result unchanged
else
newSpVec("lsparseVector", x = r, e2)
} else {
newSpVec(paste0(if(is.integer(r)) "i" else "d", "sparseVector"),
x = r, e2)
}
} else { # has x slot
r <- callGeneric(e1, e2@x)
if(identical(class(r), class(e2@x))) {
e2@x <- r
e2
} else {
newSpVec(paste0(.V.kind(r), "sparseVector"), x = r, e2)
}
}
}
else ## non-sparse result
callGeneric(e1, sp2vec(e2))
}
else ## e1 is not scalar
callGeneric(as(e1, "sparseVector"), e2)
})
Ops.spV.spV <- function(e1, e2) {
n1 <- e1@length
n2 <- e2@length
if(!n1 || !n2) ## return 0-length :
return(if(is.na(match(.Generic, .ArithGenerics))) logical() else numeric())
## else n1, n2 >= 1 :
if(n1 != n2) {
if(n1 < n2) {
n <- n1 ; N <- n2
} else {
n <- n2 ; N <- n1
}
if(n == 1L) { # simple case, do not really recycle
if(n1 < n2) return(callGeneric(sp2vec(e1), e2))
else return(callGeneric(e1, sp2vec(e2)))
}
## else : 2 <= n < N
if(N %% n != 0)
warning("longer object length is not a multiple of shorter object length")
## recycle the shorter one
if(n1 < n2) {
e1 <- rep(e1, length = N)
} else {
e2 <- rep(e2, length = N)
}
} else { ## n1 == n2
N <- n1
}
## ---- e1 & e2 now are both of length 'N' ----
## First check the (0 o 0) result
is1n <- extends(class(e1), "nsparseVector")
is2n <- extends(class(e2), "nsparseVector")
r00 <- callGeneric(if(is1n) FALSE else as0(e1@x),
if(is2n) FALSE else as0(e2@x))
if(is0(r00)) { ## -> sparseVector
e1x <- if(is1n) TRUE else e1@x
e2x <- if(is2n) TRUE else e2@x
sp <- .setparts(e1@i, e2@i)
## Idea: Modify 'e2' and return it :
new.x <- c(callGeneric(e1x[sp[["ix.only"]]], 0), # e1-only
callGeneric(0, e2x[sp[["iy.only"]]]), # e2-only
callGeneric(e1x[sp[["my"]]], # common to both
e2x[sp[["mx"]]]))
i. <- c(sp[["x.only"]], sp[["y.only"]], sp[["int"]])
cl2x <- typeof(e2x) ## atomic "class"es - can use in is(), as(), too:
if(!is2n && is(new.x, cl2x)) {
i. <- sort.int(i., method = "quick", index.return=TRUE)
e2@x <- as(new.x, cl2x)[i.$ix]
e2@i <- i.$x
e2
} else {
newSpV(paste0(.kind.type[typeof(new.x)],"sparseVector"),
x = new.x, i = i., length = e2@length)
}
} else { ## 0 o 0 is NOT in {0 , FALSE} --> "dense" result
callGeneric(sp2vec(e1), sp2vec(e2))
}
} ## {Ops.spV.spV}
## try to use it in all cases
setMethod("Ops", signature(e1 = "sparseVector", e2 = "sparseVector"),
Ops.spV.spV)
## was function(e1, e2) .bail.out.2(.Generic, class(e1), class(e2)))
setMethod("Arith", signature(e1 = "sparseVector", e2 = "sparseVector"),
function(e1, e2) callGeneric(as(e1, "dsparseVector"),
as(e2, "dsparseVector")))
setMethod("Arith", signature(e1 = "dsparseVector", e2 = "dsparseVector"),
Ops.spV.spV)
## "Arith" exception (shortcut)
setMethod("-", signature(e1 = "dsparseVector", e2 = "missing"),
function(e1) { e1@x <- -e1@x ; e1 })
setMethod("Logic", signature(e1 = "sparseVector", e2 = "sparseVector"),
## FIXME: this is suboptimal for "nsparseVector" !!
function(e1, e2) callGeneric(as(e1, "lsparseVector"),
as(e2, "lsparseVector")))
setMethod("Logic", signature(e1 = "lsparseVector", e2 = "lsparseVector"),
Ops.spV.spV)
## "nsparse" have no 'x' slot --> version of Ops.spV.spV..
## -------- but also for (nsp.. o lsp..) etc, when lsp... has no NA
if(FALSE) ### FIXME
setMethod("Logic", signature(e1 = "nsparseVector", e2 = "nsparseVector"),
function(e1, e2) {
.bail.out.2(.Generic, class(e1), class(e2))
})
## 2) spVec o [Mm]atrix : -------------
Ops.M.spV <- function(e1, e2) {
d <- e1@Dim
n1 <- prod(d)
n2 <- e2@length
if(n1 != n2) {
if(n1 && n1 < n2) { # 0-extent matrix + vector is fine
stop(sprintf(
"dim [product %d] do not match the length of object [%d]",
n1, n2))
}
## else n1 > n2 [vector]
N <- n1
if(n2 == 1) ## simple case, do not really recycle
return(callGeneric(e1, sp2vec(e2)))
if(N %% n2 != 0)
warning("longer object length is not a multiple of shorter object length")
## else : 2 <= n < N --- recycle the vector
e2 <- rep(e2, length = N)
} else { ## n1 == n2
N <- n1
}
## ---- e1 & e2 now are both of length 'N' ----
dim(e2) <- d #-> sparseMatrix (!)
callGeneric(e1, e2)
}## {Ops.M.spV}
Ops.spV.M <- function(e1, e2) {
n1 <- e1@length
d <- e2@Dim
n2 <- prod(d)
if(n2 != n1) {
if(n2 && n2 < n1) { # vector + 0-extent matrix is fine
stop(sprintf(
"dim [product %d] do not match the length of object [%d]",
n2, n1))
}
## else n2 > n1 [vector]
N <- n2
if(n1 == 1) ## simple case, do not really recycle
return(callGeneric(sp2vec(e1), e2))
if(N %% n1 != 0)
warning("longer object length is not a multiple of shorter object length")
## else : 2 <= n < N --- recycle the vector
e1 <- rep(e1, length = N)
} else { ## n2 == n1
N <- n2
}
## ---- e2 & e1 now are both of length 'N' ----
dim(e1) <- d #-> sparseMatrix (!)
callGeneric(e1, e2)
}## {Ops.spV.M}
## try to use it in all cases
setMethod("Ops", signature(e1 = "Matrix", e2 = "sparseVector"), Ops.M.spV)
setMethod("Ops", signature(e1 = "sparseVector", e2 = "Matrix"), Ops.spV.M)
|