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/ssymv/README.md
+28-70Lines changed: 28 additions & 70 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ limitations under the License.
20
20
21
21
# ssymv
22
22
23
-
> Perform one of the matrix-vector operations `y = alpha*A*x + beta*y` where alpha and beta are scalars, x and y are n element vectors and A is an n by n symmetric matrix.
23
+
> Perform one of the matrix-vector operations `y = α*A*x + β*y` where α and β are scalars, x and y are n element vectors and A is an n by n symmetric matrix.
24
24
25
25
<sectionclass = "usage">
26
26
@@ -30,41 +30,32 @@ limitations under the License.
30
30
var ssymv =require( '@stdlib/blas/base/ssymv' );
31
31
```
32
32
33
-
#### ssymv( ord, uplo, N, a, A, LDA, x, sx, b, y, sy )
33
+
#### ssymv( ord, uplo, N, α, A, LDA, x, sx, β, y, sy )
34
34
35
-
Performs one of the matrix-vector operations `y = alpha*A*x + beta*y` where alpha and beta are scalars, x and y are n element vectors and A is an n by n symmetric matrix.
35
+
Performs one of the matrix-vector operations `y = α*A*x + β*y` where α and β are scalars, x and y are n element vectors and A is an n by n symmetric matrix.
#### ssymv.ndarray( ord, uplo, N, a, A, LDA, x, sx, ox, b, y, sy, oy )
96
+
#### ssymv.ndarray( ord, uplo, N, α, A, LDA, x, sx, ox, β, y, sy, oy )
115
97
116
-
Performs one of the matrix-vector operations `y = alpha*A*x + beta*y` where alpha and beta are scalars, x and y are n element vectors and A is an n by n symmetric matrix using alternative indexing semantics.
98
+
Performs one of the matrix-vector operations `y = α*A*x + β*y` where α and β are scalars, x and y are n element vectors and A is an n by n symmetric matrix using alternative indexing semantics.
0 commit comments