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/chpmv/README.md
+31-19Lines changed: 31 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,13 +32,15 @@ var chpmv = require( '@stdlib/blas/base/chpmv' );
32
32
33
33
#### chpmv( order, uplo, N, α, AP, x, sx, β, y, sy )
34
34
35
-
Performs the matrix-vector operation `y = α*A*x + β*y`, where `α` and `β` are complex scalars, `x` and `y` are `N` element complex vectors, and `A` is an `N` by `N` Hermitian matrix supplied in packed form.
35
+
Performs 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` Hermitian matrix supplied in packed form.
36
+
37
+
<!-- eslint-disable max-len -->
36
38
37
39
```javascript
38
40
var Complex64Array =require( '@stdlib/array/complex64' );
39
41
var Complex64 =require( '@stdlib/complex/float32/ctor' );
#### chpmv.ndarray( order, uplo, N, α, A, sap, oap, x, sx, ox, β, y, sy, oy )
106
112
107
-
Performs the matrix-vector operation `y = α*A*x + β*y` using alternative indexing semantics, where `α` and `β` are complex scalars, `x` and `y` are `N` element complex vectors, and `A` is an `N` by `N` Hermitian matrix supplied in packed form.
113
+
Performs the matrix-vector operation `y = α*A*x + β*y` using alternative indexing semantics, where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` Hermitian matrix supplied in packed form.
114
+
115
+
<!-- eslint-disable max-len -->
108
116
109
117
```javascript
110
118
var Complex64Array =require( '@stdlib/array/complex64' );
111
119
var Complex64 =require( '@stdlib/complex/float32/ctor' );
var x =newComplex64Array( [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ] );
115
123
var y =newComplex64Array( [ 3.0, 3.0, 2.0, 2.0, 1.0, 1.0 ] );
116
124
var alpha =newComplex64( 0.5, 0.5 );
@@ -129,13 +137,15 @@ The function has the following additional parameters:
129
137
130
138
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example,
131
139
140
+
<!-- eslint-disable max-len -->
141
+
132
142
```javascript
133
143
var Complex64Array =require( '@stdlib/array/complex64' );
134
144
var Complex64 =require( '@stdlib/complex/float32/ctor' );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/chpmv/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "@stdlib/blas/base/chpmv",
3
3
"version": "0.0.0",
4
-
"description": "Performs the matrix-vector operation `y = α*A*x + β*y`, where `α` and `β` are complex scalars, `x` and `y` are `N` element complex vectors, and `A` is an `N` by `N` Hermitian matrix supplied in packed form.",
4
+
"description": "Performs the matrix-vector operation `y = α*A*x + β*y`.",
0 commit comments