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 matrix-vector operations `x = A*x`, or `x = A**T*x`, or `x = A**H*x`, where `x` is an `N` element complex vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular complex matrix, supplied in packed form.
35
+
Performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` or `x = A**H*x`, where `x` is an `N` element vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular matrix, supplied in packed form.
36
36
37
37
38
+
<!-- eslint-disable max-len -->
39
+
38
40
```javascript
39
41
var Complex64Array =require( '@stdlib/array/complex64' );
The stride parameters determine how elements in the input arrays are accessed at runtime. For example, to iterate over the elements of `x` in reverse order,
60
62
63
+
<!-- eslint-disable max-len -->
64
+
61
65
```javascript
62
66
var Complex64Array =require( '@stdlib/array/complex64' );
Performs one of the matrix-vector operations `x = A*x`, or `x = A**T*x`, or `x = A**H*x`, using alternative indexing semantics and where `x` is an `N` element complex vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular complex matrix, supplied in packed form.
100
+
Performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` or `x = A**H*x`, using alternative indexing semantics and where `x` is an `N` element complex vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular matrix, supplied in packed form.
101
+
102
+
<!-- eslint-disable max-len -->
95
103
96
104
```javascript
97
105
var Complex64Array =require( '@stdlib/array/complex64' );
@@ -111,13 +119,15 @@ The function has the following additional parameters:
111
119
112
120
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,
113
121
122
+
<!-- eslint-disable max-len -->
123
+
114
124
```javascript
115
125
var Complex64Array =require( '@stdlib/array/complex64' );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/ctpmv/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/ctpmv",
3
3
"version": "0.0.0",
4
-
"description": "Performs one of the matrix-vector operations `x = A*x`, or `x = A**T*x`, or `x = A**H*x`, where `x` is an `N` element vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular matrix, supplied in packed form.",
4
+
"description": "Performs one of the matrix-vector operations `x = A*x` or `x = A**T*x` or `x = A**H*x`.",
0 commit comments