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 vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular matrix, supplied in packed form.
33
+
*
34
+
* @private
35
+
* @param {string} order - storage layout
36
+
* @param {string} uplo - specifies whether `A` is an upper or lower triangular matrix
37
+
* @param {string} trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
38
+
* @param {string} diag - specifies whether `A` has a unit diagonal
39
+
* @param {NonNegativeInteger} N - number of elements along each dimension of `A`
40
+
* @param {Complex64Array} AP - packed form of a symmetric matrix `A`
41
+
* @param {integer} strideAP - `AP` stride length
42
+
* @param {NonNegativeInteger} offsetAP - starting index for `AP`
43
+
* @param {Complex64Array} x - input vector
44
+
* @param {integer} strideX - `x` stride length
45
+
* @param {NonNegativeInteger} offsetX - starting index for `x`
46
+
* @returns {Complex64Array} `x`
47
+
*
48
+
* @example
49
+
* var Complex64Array = require( '@stdlib/array/float64' );
0 commit comments