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
@@ -32,7 +32,7 @@ var zher2 = require( '@stdlib/blas/base/zher2' );
32
32
33
33
#### zher2( order, uplo, N, α, x, strideX, y, strideY, A, LDA )
34
34
35
-
Performs the hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A`, where `α` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
35
+
Performs the hermitian rank 2 operation `A = α*x*y^H + conjg( α )*y*x^H + A`, where `α` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
36
36
37
37
```javascript
38
38
var Complex128Array =require( '@stdlib/array/complex128' );
@@ -54,9 +54,9 @@ The function has the following parameters:
54
54
-**N**: specifies the order of the matrix `A`.
55
55
-**α**: scalar constant.
56
56
-**x**: first input vector [`Complex128Array`][@stdlib/array/complex128].
57
-
-**strideX**: index increment for `x`.
57
+
-**strideX**: stride length for `x`.
58
58
-**y**: second input vector [`Complex128Array`][@stdlib/array/complex128].
59
-
-**strideY**: index increment for `y`.
59
+
-**strideY**: stride length for `y`.
60
60
-**A**: input matrix stored in linear memory as [`Complex128Array`][@stdlib/array/complex128].
61
61
-**LDA**: stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`).
#### zher2.ndarray( uplo, N, α, x, strideX, offsetX, y, strideY, offsetY, A, strideA1, strideA2, offsetA )
106
106
107
-
Performs the hermitian rank 2 operation `A = α*x*y**H + conjg( α )*y*x**H + A`, using alternative indexing semantics and where `α` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
107
+
Performs the hermitian rank 2 operation `A = α*x*y^H + conjg( α )*y*x^H + A`, using alternative indexing semantics and where `α` is a scalar, `x` and `y` are `N` element vectors and `A` is an `N` by `N` hermitian matrix.
108
108
109
109
```javascript
110
110
var Complex128Array =require( '@stdlib/array/complex128' );
0 commit comments