You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/dsymm/lib/dsymm.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ var base = require( './base.js' );
37
37
*
38
38
* @param {string} order - storage layout
39
39
* @param {string} side - specifies whether `A` appears on the left or right of `B`
40
-
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
40
+
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` to be referenced
41
41
* @param {NonNegativeInteger} M - number of rows in the matrix `op(A)` and in the matrix `C`
42
42
* @param {NonNegativeInteger} N - number of columns in the matrix `op(B)` and in the matrix `C`
43
43
* @param {number} alpha - scalar constant
@@ -50,7 +50,7 @@ var base = require( './base.js' );
50
50
* @param {PositiveInteger} LDC - stride of the first dimension of `C` (a.k.a., leading dimension of the matrix `C`)
51
51
* @throws {TypeError} first argument must be a valid order
52
52
* @throws {TypeError} second argument must be a valid side
53
-
* @throws {TypeError} third argument must specify whether the lower or upper triangular matrix is supplied.
53
+
* @throws {TypeError} third argument must specify whether the lower or upper triangular matrix to be referenced.
54
54
* @throws {RangeError} fourth argument must be a nonnegative integer
55
55
* @throws {RangeError} fifth argument must be a nonnegative integer
56
56
* @throws {RangeError} eighth argument must be greater than or equal to max(1,M) when `A` is on the left of `B` and max(1,N) otherwise
@@ -87,7 +87,7 @@ function dsymm( order, side, uplo, M, N, alpha, A, LDA, B, LDB, beta, C, LDC ) {
87
87
thrownewTypeError(format('invalid argument. Second argument must be a valid side. Value: `%s`.',side));
88
88
}
89
89
if(!isMatrixTriangle(uplo)){
90
-
thrownewTypeError(format('invalid argument. Third argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.',uplo));
90
+
thrownewTypeError(format('invalid argument. Third argument must specify whether the lower or upper triangular matrix to be referenced. Value: `%s`.',uplo));
91
91
}
92
92
if(M<0){
93
93
thrownewRangeError(format('invalid argument. Fourth argument must be a nonnegative integer. Value: `%d`.',M));
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/dsymm/lib/ndarray.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ var base = require( './base.js' );
32
32
* Performs the matrix-matrix operation `C = α*A*B + β*C` or `C = α*B*A + β*C` where `α` and `β` are scalars, `A` is a symmetric matrix and `B` and `C` are `M` by `N` matrices.
33
33
*
34
34
* @param {string} side - specifies whether `A` appears on the left or right of `B`
35
-
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
35
+
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` to be referenced
36
36
* @param {NonNegativeInteger} M - number of rows in the matrix `C`
37
37
* @param {NonNegativeInteger} N - number of columns in the matrix `C`
38
38
* @param {number} alpha - scalar constant
@@ -50,7 +50,7 @@ var base = require( './base.js' );
50
50
* @param {integer} strideC2 - stride of the second dimension of `C`
51
51
* @param {NonNegativeInteger} offsetC - starting index for `C`
52
52
* @throws {TypeError} first argument must be a valid side
53
-
* @throws {TypeError} second argument must specify whether the lower or upper triangular matrix is supplied.
53
+
* @throws {TypeError} second argument must specify whether the lower or upper triangular matrix to be referenced.
54
54
* @throws {RangeError} third argument must be a nonnegative integer
55
55
* @throws {RangeError} fourth argument must be a nonnegative integer
56
56
* @throws {RangeError} sixteenth argument must be non-zero
@@ -72,7 +72,7 @@ function dsymm( side, uplo, M, N, alpha, A, strideA1, strideA2, offsetA, B, stri
72
72
thrownewTypeError(format('invalid argument. First argument must be a valid side. Value: `%s`.',side));
73
73
}
74
74
if(!isMatrixTriangle(uplo)){
75
-
thrownewTypeError(format('invalid argument. Second argument must specify whether the lower or upper triangular matrix is supplied. Value: `%s`.',uplo));
75
+
thrownewTypeError(format('invalid argument. Second argument must specify whether the lower or upper triangular matrix to be referenced. Value: `%s`.',uplo));
76
76
}
77
77
if(M<0){
78
78
thrownewRangeError(format('invalid argument. Third argument must be a nonnegative integer. Value: `%d`.',M));
0 commit comments