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/_tools/eslint/rules/README.md
+3
Original file line number
Diff line number
Diff line change
@@ -112,6 +112,7 @@ var eslint = rules;
112
112
- <spanclass="signature">[`jsdoc-doctest`][@stdlib/_tools/eslint/rules/jsdoc-doctest]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to ensure that return annotations in example code match the actual output.</span>
113
113
- <spanclass="signature">[`jsdoc-emphasis-marker`][@stdlib/_tools/eslint/rules/jsdoc-emphasis-marker]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to enforce a specific Markdown emphasis marker in JSDoc descriptions.</span>
114
114
- <spanclass="signature">[`jsdoc-empty-line-before-example`][@stdlib/_tools/eslint/rules/jsdoc-empty-line-before-example]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to enforce empty lines before JSDoc `@example` tags.</span>
115
+
- <spanclass="signature">[`jsdoc-example-require-spacing`][@stdlib/_tools/eslint/rules/jsdoc-example-require-spacing]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to enforce empty lines between `require` statements and code in JSDoc examples.</span>
115
116
- <spanclass="signature">[`jsdoc-fenced-code-flag`][@stdlib/_tools/eslint/rules/jsdoc-fenced-code-flag]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to enforce fenced Markdown code blocks to have a language flag in JSDoc descriptions.</span>
116
117
- <spanclass="signature">[`jsdoc-fenced-code-marker`][@stdlib/_tools/eslint/rules/jsdoc-fenced-code-marker]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to enforce a specific Markdown fenced code marker in JSDoc descriptions.</span>
117
118
- <spanclass="signature">[`jsdoc-final-definition`][@stdlib/_tools/eslint/rules/jsdoc-final-definition]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to require Markdown definitions in JSDoc descriptions be placed at the end of the description.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/README.md
+29
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,7 @@ var o = blas;
87
87
- <spanclass="signature">[`zaxpy( N, za, zx, strideX, zy, strideY )`][@stdlib/blas/base/zaxpy]</span><spanclass="delimiter">: </span><spanclass="description">scale a double-precision complex floating-point vector by a double-precision complex floating-point constant and add the result to a double-precision complex floating-point vector.</span>
88
88
- <spanclass="signature">[`zcopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/zcopy]</span><spanclass="delimiter">: </span><spanclass="description">copy values from one complex double-precision floating-point vector to another complex double-precision floating-point vector.</span>
89
89
- <spanclass="signature">[`zdrot( N, zx, strideX, zy, strideY, c, s )`][@stdlib/blas/base/zdrot]</span><spanclass="delimiter">: </span><spanclass="description">applies a plane rotation.</span>
90
+
- <spanclass="signature">[`zdscal( N, da, zx, strideZX )`][@stdlib/blas/base/zdscal]</span><spanclass="delimiter">: </span><spanclass="description">scale a double-precision complex floating-point vector by a double-precision floating-point constant.</span>
90
91
- <spanclass="signature">[`zscal( N, alpha, x, strideX )`][@stdlib/blas/base/zscal]</span><spanclass="delimiter">: </span><spanclass="description">scales a double-precision complex floating-point vector by a double-precision complex floating-point constant.</span>
91
92
- <spanclass="signature">[`zswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/zswap]</span><spanclass="delimiter">: </span><spanclass="description">interchange two complex double-precision floating-point vectors.</span>
92
93
@@ -100,17 +101,22 @@ var o = blas;
100
101
101
102
<divclass="namespace-toc">
102
103
104
+
- <spanclass="signature">[`dgemv( ord, trans, M, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/dgemv]</span><spanclass="delimiter">: </span><spanclass="description">perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A**T*x + β*y`.</span>
103
105
- <spanclass="signature">[`dspmv( order, uplo, N, α, AP, x, sx, β, y, sy )`][@stdlib/blas/base/dspmv]</span><spanclass="delimiter">: </span><spanclass="description">perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors and, `A` is an `N` by `N` symmetric matrix supplied in packed form.</span>
106
+
- <spanclass="signature">[`dspr( order, uplo, N, α, x, sx, AP )`][@stdlib/blas/base/dspr]</span><spanclass="delimiter">: </span><spanclass="description">perform the symmetric rank 1 operation `A = α*x*x^T + A`.</span>
104
107
- <spanclass="signature">[`dsymv( order, uplo, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/dsymv]</span><spanclass="delimiter">: </span><spanclass="description">perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric matrix.</span>
105
108
- <spanclass="signature">[`dsyr( order, uplo, N, α, x, sx, A, LDA )`][@stdlib/blas/base/dsyr]</span><spanclass="delimiter">: </span><spanclass="description">perform the symmetric rank 1 operation `A = α*x*x^T + A`.</span>
106
109
- <spanclass="signature">[`dsyr2( order, uplo, N, α, x, sx, y, sy, A, LDA )`][@stdlib/blas/base/dsyr2]</span><spanclass="delimiter">: </span><spanclass="description">perform the symmetric rank 2 operation `A = α*x*y^T + α*y*x^T + A`.</span>
107
110
- <spanclass="signature">[`dtrmv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/dtrmv]</span><spanclass="delimiter">: </span><spanclass="description">perform one of the matrix-vector operations `x = A*x` or `x = A^T*x`.</span>
111
+
- <spanclass="signature">[`dtrsv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/dtrsv]</span><spanclass="delimiter">: </span><spanclass="description">solve one of the systems of equations `A*x = b` or `A^T*x = b`.</span>
108
112
- <spanclass="signature">[`sgemv( ord, trans, M, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/sgemv]</span><spanclass="delimiter">: </span><spanclass="description">perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`.</span>
109
113
- <spanclass="signature">[`sspmv( order, uplo, N, α, AP, x, sx, β, y, sy )`][@stdlib/blas/base/sspmv]</span><spanclass="delimiter">: </span><spanclass="description">perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors and, `A` is an `N` by `N` symmetric matrix supplied in packed form.</span>
114
+
- <spanclass="signature">[`sspr( order, uplo, N, α, x, sx, AP )`][@stdlib/blas/base/sspr]</span><spanclass="delimiter">: </span><spanclass="description">perform the symmetric rank 1 operation `A = α*x*x^T + A`.</span>
110
115
- <spanclass="signature">[`ssymv( order, uplo, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/ssymv]</span><spanclass="delimiter">: </span><spanclass="description">perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric matrix.</span>
111
116
- <spanclass="signature">[`ssyr( order, uplo, N, α, x, sx, A, LDA )`][@stdlib/blas/base/ssyr]</span><spanclass="delimiter">: </span><spanclass="description">perform the symmetric rank 1 operation `A = α*x*x**T + A`.</span>
112
117
- <spanclass="signature">[`ssyr2( order, uplo, N, α, x, sx, y, sy, A, LDA )`][@stdlib/blas/base/ssyr2]</span><spanclass="delimiter">: </span><spanclass="description">perform the symmetric rank 2 operation `A = α*x*y^T + α*y*x^T + A`.</span>
113
118
- <spanclass="signature">[`strmv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/strmv]</span><spanclass="delimiter">: </span><spanclass="description">perform one of the matrix-vector operations `x = A*x` or `x = A^T*x`.</span>
119
+
- <spanclass="signature">[`strsv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/strsv]</span><spanclass="delimiter">: </span><spanclass="description">solve one of the systems of equations `A*x = b` or `A^T*x = b`.</span>
- <spanclass="signature">[`dgemm( ord, ta, tb, M, N, K, α, A, lda, B, ldb, β, C, ldc )`][@stdlib/blas/base/dgemm]</span><spanclass="delimiter">: </span><spanclass="description">perform the matrix-matrix operation `C = α*op(A)*op(B) + β*C` where `op(X)` is one of the `op(X) = X`, or `op(X) = X^T`.</span>
132
+
- <spanclass="signature">[`sgemm( ord, ta, tb, M, N, K, α, A, lda, B, ldb, β, C, ldc )`][@stdlib/blas/base/sgemm]</span><spanclass="delimiter">: </span><spanclass="description">perform the matrix-matrix operation `C = α*op(A)*op(B) + β*C` where `op(X)` is one of the `op(X) = X`, or `op(X) = X^T`.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/base/README.md
+3
Original file line number
Diff line number
Diff line change
@@ -157,6 +157,7 @@ var o = ns;
157
157
- <spanclass="signature">[`ssumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/ssumkbn2]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of single-precision floating-point strided array elements using a second-order iterative Kahan–Babuška algorithm.</span>
158
158
- <spanclass="signature">[`ssumors( N, x, strideX )`][@stdlib/blas/ext/base/ssumors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of single-precision floating-point strided array elements using ordinary recursive summation.</span>
159
159
- <spanclass="signature">[`ssumpw( N, x, strideX )`][@stdlib/blas/ext/base/ssumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of single-precision floating-point strided array elements using pairwise summation.</span>
160
+
- <spanclass="signature">[`wasm`][@stdlib/blas/ext/base/wasm]</span><spanclass="delimiter">: </span><spanclass="description">extensions to basic linear algebra subprograms (BLAS) compiled to WebAssembly.</span>
- <spanclass="signature">[`namedtypedtuple( fields[, options] )`][@stdlib/dstructs/named-typed-tuple]</span><spanclass="delimiter">: </span><spanclass="description">create a factory for generating named typed tuples.</span>
52
+
- <spanclass="signature">[`Stack()`][@stdlib/dstructs/stack]</span><spanclass="delimiter">: </span><spanclass="description">stack data structure.</span>
0 commit comments