This function solves the equation a %*% x = b
for
x
, where b
can be either a vector or a matrix.
# S4 method for vclMatrix,vclMatrix
solve(a, b, ...)# S4 method for vclMatrix,missing
solve(a, b, ...)
# S4 method for gpuMatrix,gpuMatrix
solve(a, b, ...)
# S4 method for gpuMatrix,missing
solve(a, b, ...)
A gpuR object
A gpuR object
A gpuR object
further arguments passed to or from other methods
Charles Determan Jr.