1.0.2 • Published 9 years ago

ndarray-blas-gemm-complex v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

ndarray-blas-gemm-complex

Build Status npm version

BLAS-like Level 3 Complex GEMM (matrix-matrix multiplication) for ndarrays

Note: This module is definitely not optimized. It should be considered production ready for small problems in the sense that accuracy is just fine, but no attempt has been made to optimize.

Usage

gemm( A_r, A_i, B_r, B_i, C_r, C_i )

Compute C <- A * B for the 2D ndarrays A, B, and C. Dimensions of A, B, and C must be compatible according to the normal matrix multiplication rules.

Credits

(c) 2015 Ricky Reusser. MIT License