| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
/stdlib merge |
Sorry, something went wrong.
Coverage Report
The above coverage report was generated for the changes in this PR. |
Sorry, something went wrong.
| * dtpmv.ndarray( 'row-major', 'upper', 'no-transpose', 'non-unit', 3, AP, 1, 0, x, 1, 0 ); | ||
| * // x => <Float64Array>[ 14.0, 8.0, 3.0 ] | ||
| */ | ||
| ndarray( uplo: MatrixTriangle, trans: TransposeOperation, diag: DiagonalType, N: number, AP: Float64Array, strideAP: number, offsetAP: number, x: Float64Array, strideX: number, offsetX: number ): Float64Array; |
There was a problem hiding this comment.
The ndarray type definition is missing the order: Layout parameter as the first argument.
ndarray( order: Layout, uplo: MatrixTriangle, trans: TransposeOperation, diag: DiagonalType, N: number, AP: Float64Array, strideAP: number, offsetAP: number, x: Float64Array, strideX: number, offsetX: number ): Float64Array;
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Progresses: #2039.
Description
This RFC proposes to add a routine to perform one of the matrix-vector operations x = A*x, or x = A**T*x, where x is an N element vector, and A is an N by N unit, or non-unit, upper or lower triangular matrix, supplied in packed form as defined in BLAS Level 2 routines. Specifically adding @stdlib/blas/base/dtpmv is proposed.
Related Issues
This pull request:
Questions
No.
Other
No.
Checklist
@stdlib-js/reviewers