Rev 3515 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#### The "mother" of all Matrix factorizations## use a "fits all" bail-out method -- eventually this should not happen anymoresetMethod("expand", "MatrixFactorization",function(x, ...) .bail.out.1(.Generic, class(x)))setMethod("show", "MatrixFactorization",function(object) { ## cheap one -- can have better for sub-classescl <- class(object)cat(sprintf("'MatrixFactorization' of class \"%s\"\n", cl))str(object)})