Skip to content

Commit 5756fb6

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent a844854 commit 5756fb6

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/base/zher/docs/types

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/zher/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ interface Routine {
5252
( order: Layout, uplo: MatrixTriangle, N: number, alpha: number, x: Complex128Array, strideX: number, A: Complex128Array, LDA: number ): Complex128Array;
5353

5454
/**
55-
* 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.
5656
*
5757
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
5858
* @param N - number of elements along each dimension of `A`
@@ -72,7 +72,7 @@ interface Routine {
7272
* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0 ] );
7373
* var A = new Complex128Array( [ 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 4.0, 0.0 ] );
7474
*
75-
* zher( 'lower', x.length, 2.0, x, 1, 0, A, 2, 1, 0 );
75+
* zher.ndarray( 'lower', x.length, 2.0, x, 1, 0, A, 2, 1, 0 );
7676
* // A => <Complex128Array>[ 11.0, 0.0, 0.0, 0.0, 24.0, -1.0, 54.0, 0.0 ]
7777
*/
7878
ndarray( uplo: MatrixTriangle, N: number, alpha: number, x: Complex128Array, strideX: number, offsetX: number, A: Complex128Array, strideA1: number, strideA2: number, offsetA: number ): Complex128Array;

0 commit comments

Comments
 (0)