ndarray-blas-trsv
v1.0.1
Published
BLAS Level 2 TRSV (triangular solve) for ndarrays
Downloads
17
Readme
ndarray-blas-trsv
BLAS Level 2 TRSV (triangular solve) for ndarrays
Usage
trsv( A, x [, uplo] )
Calculate x <- A^-1 x
for the upper triangular matrix A using back-substitution. Data below the diagonal is ignored. If uplo
is 'lo', uses the lower triangular portion of A and performs forward-substitution instead. Result overwrites the vector x.
Credits
(c) 2015 Ricky Reusser. MIT License