Skip to content

Commit

Permalink
docs: update descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Aug 15, 2024
1 parent 4c97a08 commit 2f4fa56
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/node_modules/@stdlib/blas/base/sspr/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ interface Routine {
* Performs the symmetric rank 1 operation `A = α*x*x^T + A` where `α` is a scalar, `x` is an `N` element vector, and `A` is an `N` by `N` symmetric matrix supplied in packed form.
*
* @param order - storage layout
* @param uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is being supplied
* @param N - number of columns in the matrix `A`
* @param uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
* @param N - number of elements along each dimension of `A`
* @param alpha - scalar constant
* @param x - first input array
* @param strideX - `x` stride length
Expand All @@ -53,8 +53,8 @@ interface Routine {
* Performs the symmetric rank 1 operation `A = α*x*x^T + A`, using alternative indexing semantics and where `α` is a scalar, `x` is an `N` element vector, and `A` is an `N` by `N` symmetric matrix supplied in packed form.
*
* @param order - storage layout
* @param uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is being supplied
* @param N - number of columns in the matrix `A`
* @param uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
* @param N - number of elements along each dimension of `A`
* @param alpha - scalar constant
* @param x - first input array
* @param strideX - `x` stride length
Expand All @@ -80,8 +80,8 @@ interface Routine {
* Performs the symmetric rank 1 operation `A = α*x*x^T + A` where `α` is a scalar, `x` is an `N` element vector, and `A` is an `N` by `N` symmetric matrix supplied in packed form.
*
* @param order - storage layout
* @param uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is being supplied
* @param N - number of columns in the matrix `A`
* @param uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
* @param N - number of elements along each dimension of `A`
* @param alpha - scalar constant
* @param x - first input array
* @param strideX - `x` stride length
Expand Down

0 comments on commit 2f4fa56

Please sign in to comment.