Return the matrix cross-product of two conformable matrices using a GPU. This is equivalent to t(x) or x device and host is required.
# S4 method for gpuVector,gpuVector
tcrossprod(x, y)# S4 method for gpuVector,missing
tcrossprod(x, y)
# S4 method for vclMatrix,missing
crossprod(x, y)
# S4 method for vclMatrix,vclMatrix
crossprod(x, y)
# S4 method for vclMatrix,matrix
crossprod(x, y)
# S4 method for matrix,vclMatrix
crossprod(x, y)
# S4 method for vclMatrix,vclVector
crossprod(x, y)
# S4 method for vclVector,vclMatrix
crossprod(x, y)
# S4 method for vclMatrix,missing
tcrossprod(x, y)
# S4 method for vclMatrix,vclMatrix
tcrossprod(x, y)
# S4 method for matrix,vclMatrix
tcrossprod(x, y)
# S4 method for vclMatrix,matrix
tcrossprod(x, y)
# S4 method for vclMatrix,vclVector
tcrossprod(x, y)
# S4 method for vclVector,vclMatrix
tcrossprod(x, y)
# S4 method for vclVector,vclVector
tcrossprod(x, y)
# S4 method for vclVector,missing
tcrossprod(x, y)
A vclMatrix
object of the transpose of the outer
product of the two objects x
and y
.
A vclMatrix
object.
A vclMatrix
object.
Charles Determan Jr.