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
* Performs one of the symmetric rank `K` operations `C = α*A*A**T + β*C` or `C = α*A**T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
30
+
* Performs one of the symmetric rank `K` operations `C = α*A*A^T + β*C` or `C = α*A^T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
31
31
*
32
32
* @param order - storage layout
33
-
* @param uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` is supplied
33
+
* @param uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` to be referenced
34
34
* @param trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
35
35
* @param N - order of the matrix `C`
36
36
* @param K - number of columns or number of rows of the matrix `A`
* Performs one of the symmetric rank `K` operations `C = α*A*A**T + β*C` or `C = α*A**T*A + β*C`, using alternative indexing semantics and where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
57
+
* Performs one of the symmetric rank `K` operations `C = α*A*A^T + β*C` or `C = α*A^T*A + β*C`, using alternative indexing semantics and where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
58
58
*
59
59
* @param order - storage layout
60
-
* @param uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` is supplied
60
+
* @param uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` to be referenced
61
61
* @param trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
62
62
* @param N - order of the matrix `C`
63
63
* @param K - number of columns or number of rows of the matrix `A`
@@ -79,17 +79,17 @@ interface Routine {
79
79
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] );
80
80
* var C = new Float64Array( [ 1.0, 2.0, 3.0, 0.0, 4.0, 5.0, 0.0, 0.0, 6.0 ] );
* Performs one of the symmetric rank `K` operations `C = α*A*A**T + β*C` or `C = α*A**T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
89
+
* Performs one of the symmetric rank `K` operations `C = α*A*A^T + β*C` or `C = α*A^T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
90
90
*
91
91
* @param order - storage layout
92
-
* @param uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` is supplied
92
+
* @param uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` to be referenced
93
93
* @param trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
94
94
* @param N - order of the matrix `C`
95
95
* @param K - number of columns or number of rows of the matrix `A`
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/dsyrk/lib/dsyrk.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ var base = require( './base.js' );
32
32
// MAIN //
33
33
34
34
/**
35
-
* Performs one of the symmetric rank `K` operations `C = α*A*A**T + β*C` or `C = α*A**T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
35
+
* Performs one of the symmetric rank `K` operations `C = α*A*A^T + β*C` or `C = α*A^T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
36
36
*
37
37
* @param {string} order - storage layout
38
38
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` is supplied
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/dsyrk/lib/index.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@
19
19
'use strict';
20
20
21
21
/**
22
-
* BLAS level 3 routine to perform one of the symmetric rank `K` operations `C = α*A*A**T + β*C` or `C = α*A**T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
22
+
* BLAS level 3 routine to perform one of the symmetric rank `K` operations `C = α*A*A^T + β*C` or `C = α*A^T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/dsyrk/lib/ndarray.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ var base = require( './base.js' );
29
29
// MAIN //
30
30
31
31
/**
32
-
* Performs one of the symmetric rank `K` operations `C = α*A*A**T + β*C` or `C = α*A**T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
32
+
* Performs one of the symmetric rank `K` operations `C = α*A*A^T + β*C` or `C = α*A^T*A + β*C` where `α` and `β` are scalars, `C` is an `N` by `N` symmetric matrix and `A` is an `N` by `K` matrix in the first case and a `K` by `N` matrix in the second case.
33
33
*
34
34
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `C` is supplied
35
35
* @param {string} trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
0 commit comments