Skip to content

scijs/ndarray-blas-gemv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ndarray-blas-gemv

Build Status npm version Dependency Status

BLAS Level 2 GEMV (matrix-vector multiply) for ndarrays

Usage

gemv( alpha, A, x, beta, y )

Calculate y <- alpha * A * x + beta * y for scalar alpha, matrix A, vector x, scalar beta, and vector y. Result is overwritten in vector y. All other inputs are unchanged.

Example

var gemv = require('ndarray-blas-gemv')

var A = ndarray([1,2,5,3], [2,2]),
    x = ndarray([-4,7]),
    y = ndarray([3,-2])

gemv( -4, A, x, 2, y )

// Result: y = [-34, -8]

To multiply using the transpose of A, you can simply use .transpose(1,0) to transpose the input (note that this calculates new strides and offsets but does not rearrange the physical memory).

var A = ndarray([1,2,5,3], [2,2]),
    x = ndarray([-4,7]),
    y = ndarray([3,-2])

gemv( -4, A.transpose(1,0), x, 2, y )

// Result: y = [-118, -56]

Credits

(c) 2015 Ricky Reusser. MIT License

About

BLAS Level 2 GEMV (Matrix-Vector multiply) for ndarrays

Resources

Stars

Watchers

Forks

Packages

No packages published