spam (version 2.5-1)

crossprod: Spam Matrix Crossproduct

Description

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).

Usage

crossprod.spam(x, y = NULL)
     
     tcrossprod.spam(x, y = NULL)

Arguments

x, y

matrices: y = NULL is taken to be the same matrix as x. Vectors are promoted to single-column or single-row matrices, depending on the context.

Value

A double matrix

Examples

Run this code
# NOT RUN {
crossprod.spam(diag.spam(2),1:2)

# }

Run the code above in your browser using DataLab