The R Project SVN R

Rev

Rev 88581 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 88581 Rev 88887
Line 12... Line 12...
12
  cross-product.  This is formally equivalent to (but faster than) the call
12
  cross-product.  This is formally equivalent to (but faster than) the call
13
  \code{t(x) \%*\% y} (\code{crossprod}) or
13
  \code{t(x) \%*\% y} (\code{crossprod}) or
14
  \code{x \%*\% t(y)} (\code{tcrossprod}).
14
  \code{x \%*\% t(y)} (\code{tcrossprod}).
15
 
15
 
16
  These are generic functions since \R 4.4.0: methods can be written
16
  These are generic functions since \R 4.4.0: methods can be written
17
  individually or via the \code{\link[=S3groupGeneric]{matOps}} group
17
  individually or via the \code{\link[=S3groupGeneric]{matrixOps}} group
18
  generic function; it dispatches to S3 and S4 methods.
18
  generic function; it dispatches to S3 and S4 methods.
19
}
19
}
20
\usage{
20
\usage{
21
 crossprod(x, y = NULL, \dots)
21
 crossprod(x, y = NULL, \dots)
22
tcrossprod(x, y = NULL, \dots)
22
tcrossprod(x, y = NULL, \dots)