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 the hermitian rank 1 operation `A = alpha*x*x**H + A`, where `alpha` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix.
55
+
* Performs the hermitian rank 1 operation `A = alpha*x*x**H + A`, using alternative semantics indexing and where `alpha` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix.
56
56
*
57
57
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
58
58
* @param N - number of elements along each dimension of `A`
@@ -72,7 +72,7 @@ interface Routine {
72
72
* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0 ] );
73
73
* var A = new Complex128Array( [ 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 4.0, 0.0 ] );
0 commit comments