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
* Solves one of the systems of equations `A*x = b` or `A^T*x = b` or `A^H*x = b` where `b` and `x` are `N` element complex vectors and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular complex matrix.
32
+
*
33
+
* @private
34
+
* @param {string} uplo - specifies whether `A` is an upper or lower triangular matrix
35
+
* @param {string} trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
36
+
* @param {string} diag - specifies whether `A` has a unit diagonal
37
+
* @param {NonNegativeInteger} N - number of elements along each dimension of `A`
38
+
* @param {Complex64Array} A - input matrix
39
+
* @param {integer} strideA1 - stride of the first dimension of `A`
40
+
* @param {integer} strideA2 - stride of the second dimension of `A`
41
+
* @param {NonNegativeInteger} offsetA - starting index for `A`
42
+
* @param {Complex64Array} x - input vector
43
+
* @param {integer} strideX - `x` stride length
44
+
* @param {NonNegativeInteger} offsetX - starting index for `x`
45
+
* @returns {Complex64Array} `x`
46
+
*
47
+
* @example
48
+
* var Complex64Array = require( '@stdlib/array/complex64' );
0 commit comments