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.
31
+
* Performs the hermitian rank 1 operation `A = α*x*x**H + A`, where `α` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix.
32
32
*
33
33
* @param order - storage layout
34
34
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
* 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.
55
+
* Performs the hermitian rank 1 operation `A = α*x*x**H + A`, using alternative semantics indexing and where `α` 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`
@@ -79,7 +79,7 @@ interface Routine {
79
79
}
80
80
81
81
/**
82
-
* 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.
82
+
* Performs the hermitian rank 1 operation `A = α*x*x**H + A`, where `α` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix.
83
83
*
84
84
* @param order - storage layout
85
85
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
0 commit comments