crossprod | R Documentation |
Given matrices x
and y
as arguments, return a matrix
cross-product. This is formally equivalent to (but usually
slightly faster than) the call t(x) %*% y
(crossprod.spam
) or x
%*% t(y)
(tcrossprod.spam
).
crossprod.spam(x, y = NULL, ...)
tcrossprod.spam(x, y = NULL, ...)
x , y |
matrices: |
... |
potentially further arguments from other methods. |
A double matrix
When x
or y
are not matrices, they are treated as column or
row matrices.
Reinhard Furrer
crossprod.spam(diag.spam(2),1:2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.