Skip to content

Commit 6c0837e

Browse files
committed
chore: update implementation
1 parent eafd304 commit 6c0837e

File tree

4 files changed

+196
-196
lines changed

4 files changed

+196
-196
lines changed

lib/node_modules/@stdlib/blas/base/ctrmv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ var logEach = require( '@stdlib/console/log-each' );
150150
var ctrmv = require( '@stdlib/blas/base/ctrmv' );
151151

152152
function rand() {
153-
return new Complex64( discreteUniform( 0, 10 ), discreteUniform( -5, 5 ) );
153+
return new Complex64( discreteUniform( 0, 10 ), discreteUniform( -5, 5 ) );
154154
}
155155

156156
var x = filledarrayBy( 3, 'complex64', rand );

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ interface Routine {
3232
*
3333
* @param order - storage layout
3434
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
35-
* @param trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
36-
* @param diag - specifies whether `A` has a unit diagonal
35+
* @param trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
36+
* @param diag - specifies whether `A` has a unit diagonal
3737
* @param N - number of elements along each dimension of `A`
3838
* @param x - input array
3939
* @param strideX - `x` stride length
@@ -45,19 +45,19 @@ interface Routine {
4545
* var Complex64Array = require( '@stdlib/array/complex64' );
4646
*
4747
* var x = new Complex64Array( [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ] );
48-
* var A = new Complex64Array( [ 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ] );
49-
*
50-
* ctrmv( 'column-major', 'upper', 'no-transpose', 'non-unit', 3, x, 1, A, 3 );
51-
* // x => <Complex64Array>[ 0.0, 12.0, 0.0, 10.0, 0.0, 6.0 ]
48+
* var A = new Complex64Array( [ 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ] );
49+
*
50+
* ctrmv( 'column-major', 'upper', 'no-transpose', 'non-unit', 3, x, 1, A, 3 );
51+
* // x => <Complex64Array>[ 0.0, 12.0, 0.0, 10.0, 0.0, 6.0 ]
5252
*/
5353
( order: Layout, uplo: MatrixTriangle, trans: TransposeOperation, diag: DiagonalType, N: number, x: Complex64Array, strideX: number, A: Complex64Array, LDA: number ): Complex64Array;
5454

5555
/**
5656
* Performs one of the matrix-vector operations `x = A*x`, or `x = A**T*x`, or `x = A**H*x`, using alternative semantics and where `x` is an `N` element vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular matrix.
5757
*
5858
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
59-
* @param trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
60-
* @param diag - specifies whether `A` has a unit diagonal
59+
* @param trans - specifies whether `A` should be transposed, conjugate-transposed, or not transposed
60+
* @param diag - specifies whether `A` has a unit diagonal
6161
* @param N - number of elements along each dimension of `A`
6262
* @param x - input array
6363
* @param strideX - `x` stride length
@@ -72,10 +72,10 @@ interface Routine {
7272
* var Complex64Array = require( '@stdlib/array/complex64' );
7373
*
7474
* var x = new Complex64Array( [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0 ] );
75-
* var A = new Complex64Array( [ 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ] );
76-
*
77-
* ctrmv.ndarray( 'upper', 'no-transpose', 'non-unit', 3, x, 1, 0, A, 3, 1, 0 );
78-
* // x => <Complex64Array>[ 0.0, 12.0, 0.0, 10.0, 0.0, 6.0 ]
75+
* var A = new Complex64Array( [ 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 ] );
76+
*
77+
* ctrmv.ndarray( 'upper', 'no-transpose', 'non-unit', 3, x, 1, 0, A, 3, 1, 0 );
78+
* // x => <Complex64Array>[ 0.0, 12.0, 0.0, 10.0, 0.0, 6.0 ]
7979
*/
8080
ndarray( uplo: MatrixTriangle, trans: TransposeOperation, diag: DiagonalType, N: number, x: Complex64Array, strideX: number, offsetX: number, A: Complex64Array, strideA1: number, strideA2: number, offsetA: number ): Complex64Array;
8181
}

0 commit comments

Comments
 (0)