@@ -48,7 +48,7 @@ dsyr2( 'row-major', 'upper', 3, 1.0, x, 1, y, 1, A, 3 );
4848The 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 );
219219The 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
252252The 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