Skip to content

Commit

Permalink
docs: update descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-095 committed Jul 30, 2024
1 parent d1fef4b commit 1228f69
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/dtrmv/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ dtrmv( 'row-major', 'upper', 'no-transpose', 'unit', 3, A, 3, x1, 1 );

#### dtrmv.ndarray( uplo, trans, diag, N, A, sa1, sa2, oa, x, sx, ox )

Performs one of the matrix-vector operations `x = A*x` or `x = A^T*x`, using alternative indexing semantics, where `x` is an `N` element vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular matrix.
Performs one of the matrix-vector operations `x = A*x` or `x = A^T*x`, using alternative indexing semantics and where `x` is an `N` element vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular matrix.

```javascript
var Float64Array = require( '@stdlib/array/float64' );
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/dtrmv/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

{{alias}}.ndarray( uplo, trans, diag, N, A, sa1, sa2, oa, x, sx, ox )
Performs one of the matrix-vector operations `x = A*x` or `x = A^T*x`,
using alternative indexing semantics, where `x` is an `N` element vector
using alternative indexing semantics and where `x` is an `N` element vector
and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular
matrix.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ interface Routine {
( order: Layout, uplo: MatrixTriangle, trans: TransposeOperation, diag: DiagonalType, N: number, A: Float64Array, LDA: number, x: Float64Array, strideX: number ): Float64Array;

/**
* Performs one of the matrix-vector operations `x = A*x` or `x = A^T*x`, using alternative indexing semantics, where `x` is an `N` element vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular matrix.
* Performs one of the matrix-vector operations `x = A*x` or `x = A^T*x`, using alternative indexing semantics and where `x` is an `N` element vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular matrix.
*
* @param uplo - specifies whether `A` is an upper or lower triangular matrix
* @param trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
Expand Down

0 comments on commit 1228f69

Please sign in to comment.