Learn R Programming

gputools (version 1.1)

cpuMatMult: Perform Matrix Multiplication

Description

Performs matrix multiplication using R's BLAS. This function is merely a wrapper for the BLAS dgemm function.

Usage

cpuMatMult(a, b)

Arguments

a
a numeric matrix.
b
a numeric matrix.

Value

A numeric matrix. The matrix is just the product of arguments 'a' and 'b'.

Examples

Run this code
matA <- matrix(runif(2*3), 2, 3)
matB <- matrix(runif(3*4), 3, 4)
cpuMatMult(matA, matB)

Run the code above in your browser using DataLab