Skip to content

Commit 19ea8e0

Browse files
authored
chore: update parameter descriptions
Signed-off-by: Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com>
1 parent 6e9d58b commit 19ea8e0

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/blas/base/dsyr2

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/base/dsyr2/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dsyr2( 'row-major', 'upper', 3, 1.0, x, 1, y, 1, A, 3 );
4848
The function has the following parameters:
4949

5050
- **order**: storage layout.
51-
- **uplo**: specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied.
51+
- **uplo**: specifies whether the upper or lower triangular part of the symmetric matrix `A` should be referenced.
5252
- **N**: number of elements along each dimension of `A`.
5353
- **α**: scalar constant.
5454
- **x**: first input [`Float64Array`][mdn-float64array].
@@ -219,7 +219,7 @@ c_dsyr2( CblasColMajor, CblasUpper, 3, 1.0, x, 1, y, 1, A, 3 );
219219
The function accepts the following arguments:
220220
221221
- **order**: `[in] CBLAS_LAYOUT` storage layout.
222-
- **uplo**: `[in] CBLAS_UPLO` specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied.
222+
- **uplo**: `[in] CBLAS_UPLO` specifies whether the upper or lower triangular part of the symmetric matrix `A` should be referenced.
223223
- **N**: `[in] CBLAS_INT` number of elements along each dimension of `A`.
224224
- **alpha**: `[in] double` scalar constant.
225225
- **X**: `[in] double*` first input array.
@@ -251,7 +251,7 @@ c_dsyr2_ndarray( CblasUpper, 3, 1.0, x, 1, 0, y, 1, 0, A, 3, 1, 0 );
251251
252252
The function accepts the following arguments:
253253
254-
- **uplo**: `[in] CBLAS_UPLO` specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied.
254+
- **uplo**: `[in] CBLAS_UPLO` specifies whether the upper or lower triangular part of the symmetric matrix `A` should be referenced.
255255
- **N**: `[in] CBLAS_INT` number of elements along each dimension of `A`.
256256
- **alpha**: `[in] double` scalar constant.
257257
- **X**: `[in] double*` first input array.

0 commit comments

Comments
 (0)