Skip to content

Commit 9798c3e

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent de970d6 commit 9798c3e

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/blas/base/cdotc/docs

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/blas/base/cdotc/docs/repl.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@
3838
> var x = new {{alias:@stdlib/array/complex64}}( [ 7.0, -8.0, -1.0, -9.0 ] );
3939
> var y = new {{alias:@stdlib/array/complex64}}( [ 6.0, -6.0, -9.0, 5.0 ] );
4040
> var z = {{alias}}( x.length, x, 1, y, 1 )
41-
<Complex128>[ 54.0, -80.0 ]
41+
<Complex64>[ 54.0, -80.0 ]
4242

4343
// Strides:
4444
> x = new {{alias:@stdlib/array/complex64}}( [ 7.0, -8.0, -4.0, -7.0, -1.0, -9.0 ] );
4545
> y = new {{alias:@stdlib/array/complex64}}( [ 6.0, -6.0, -9.0, 5.0, 7.0, -6.0 ] );
4646
> z = {{alias}}( 2, x, 2, y, 1 )
47-
<Complex128>[ 54.0, -80.0 ]
47+
<Complex64>[ 54.0, -80.0 ]
4848

4949

5050
{{alias}}.ndarray( N, x, strideX, offsetX, y, strideY, offsetY )
@@ -88,19 +88,19 @@
8888
> var x = new {{alias:@stdlib/array/complex64}}( [ 7.0, -8.0, -1.0, -9.0 ] );
8989
> var y = new {{alias:@stdlib/array/complex64}}( [ 6.0, -6.0, -9.0, 5.0 ] );
9090
> var z = {{alias}}.ndarray( x.length, x, 1, 0, y, 1, 0 )
91-
<Complex128>[ 54.0, -80.0 ]
91+
<Complex64>[ 54.0, -80.0 ]
9292

9393
// Strides:
9494
> x = new {{alias:@stdlib/array/complex64}}( [ 7.0, -8.0, -4.0, -7.0, -1.0, -9.0 ] );
9595
> y = new {{alias:@stdlib/array/complex64}}( [ 6.0, -6.0, -9.0, 5.0, 7.0, -6.0 ] );
9696
> z = {{alias}}.ndarray( 2, x, 2, 0, y, 1, 0 )
97-
<Complex128>[ 54.0, -80.0 ]
97+
<Complex64>[ 54.0, -80.0 ]
9898

9999
// Using offset indices:
100100
> x = new {{alias:@stdlib/array/complex64}}( [ 7.0, -8.0, -4.0, -7.0, -1.0, -9.0 ] );
101101
> y = new {{alias:@stdlib/array/complex64}}( [ 6.0, -6.0, -9.0, 5.0, 7.0, -6.0 ] );
102102
> z = {{alias}}.ndarray( 2, x, -2, x.length-1, y, 1, 1 )
103-
<Complex128>[ 54.0, -80.0 ]
103+
<Complex64>[ 54.0, -80.0 ]
104104

105105
See Also
106106
--------

0 commit comments

Comments
 (0)