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`, using alternative semantics and where `x` is an `N` element vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular matrix.
57
57
*
58
58
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
59
-
* @param trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
60
-
* @param diag - specifies whether `A` has a unit diagonal
59
+
* @param trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
60
+
* @param diag - specifies whether `A` has a unit diagonal
61
61
* @param N - number of elements along each dimension of `A`
62
62
* @param x - input array
63
63
* @param strideX - `x` stride length
@@ -72,10 +72,10 @@ interface Routine {
72
72
* var Complex64Array = require( '@stdlib/array/complex64' );
73
73
*
74
74
* var x = new Complex64Array( [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ] );
75
-
* var A = new Complex64Array( [ 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ] );
0 commit comments