tcrossprod,gpuVector,gpuVector-method {gpuR}R Documentation

vclMatrix Crossproduct

Description

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.

Usage

## S4 method for signature 'gpuVector,gpuVector'
tcrossprod(x, y)

## S4 method for signature 'gpuVector,missing'
tcrossprod(x, y)

## S4 method for signature 'vclMatrix,missing'
crossprod(x, y)

## S4 method for signature 'vclMatrix,vclMatrix'
crossprod(x, y)

## S4 method for signature 'vclMatrix,matrix'
crossprod(x, y)

## S4 method for signature 'matrix,vclMatrix'
crossprod(x, y)

## S4 method for signature 'vclMatrix,vclVector'
crossprod(x, y)

## S4 method for signature 'vclVector,vclMatrix'
crossprod(x, y)

## S4 method for signature 'vclMatrix,missing'
tcrossprod(x, y)

## S4 method for signature 'vclMatrix,vclMatrix'
tcrossprod(x, y)

## S4 method for signature 'matrix,vclMatrix'
tcrossprod(x, y)

## S4 method for signature 'vclMatrix,matrix'
tcrossprod(x, y)

## S4 method for signature 'vclMatrix,vclVector'
tcrossprod(x, y)

## S4 method for signature 'vclVector,vclMatrix'
tcrossprod(x, y)

## S4 method for signature 'vclVector,vclVector'
tcrossprod(x, y)

## S4 method for signature 'vclVector,missing'
tcrossprod(x, y)

Arguments

x

A vclMatrix object.

y

A vclMatrix object.

Value

A vclMatrix object of the transpose of the outer product of the two objects x and y.

Author(s)

Charles Determan Jr.


[Package gpuR version 2.0.6 Index]