Skip to content

Commit 4479729

Browse files
authored
chore: remove Float64Array
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 01d6f06 commit 4479729

File tree

1 file changed

+2
-8
lines changed
  • lib/node_modules/@stdlib/blas/base/gsyr

1 file changed

+2
-8
lines changed

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

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ var gsyr = require( '@stdlib/blas/base/gsyr' );
3535
Performs the symmetric rank 1 operation `A = α*x*x^T + A` where `α` is a scalar, `x` is an `N` element vector, and `A` is an `N` by `N` symmetric matrix.
3636

3737
```javascript
38-
var Float64Array = require( '@stdlib/array/float64' );
39-
4038
var A = [ 1.0, 2.0, 3.0, 2.0, 1.0, 2.0, 3.0, 2.0, 1.0 ];
4139
var x = [ 1.0, 2.0, 3.0 ];
4240

@@ -62,7 +60,7 @@ var A = [ 1.0, 2.0, 3.0, 2.0, 1.0, 2.0, 3.0, 2.0, 1.0 ];
6260
var x = [ 3.0, 2.0, 1.0 ];
6361

6462
gsyr( 'row-major', 'upper', 3, 1.0, x, -1, A, 3 );
65-
// A => <Float64Array>[ 2.0, 4.0, 6.0, 2.0, 5.0, 8.0, 3.0, 2.0, 10.0 ]
63+
// A => [ 2.0, 4.0, 6.0, 2.0, 5.0, 8.0, 3.0, 2.0, 10.0 ]
6664
```
6765

6866
Note that indexing is relative to the first index. To introduce an offset, use [`typed array`][mdn-typed-array] views.
@@ -88,13 +86,11 @@ gsyr( 'row-major', 'upper', 3, 1.0, x1, -1, A, 3 );
8886
Performs the symmetric rank 1 operation `A = α*x*x^T + A`, using alternative indexing semantics and where `α` is a scalar, `x` is an `N` element vector, and `A` is an `N` by `N` symmetric matrix.
8987

9088
```javascript
91-
var Float64Array = require( '@stdlib/array/float64' );
92-
9389
var A = [ 1.0, 2.0, 3.0, 2.0, 1.0, 2.0, 3.0, 2.0, 1.0 ];
9490
var x = [ 1.0, 2.0, 3.0 ];
9591

9692
gsyr.ndarray( 'upper', 3, 1.0, x, 1, 0, A, 3, 1, 0 );
97-
// A => <Float64Array>[ 2.0, 4.0, 6.0, 2.0, 5.0, 8.0, 3.0, 2.0, 10.0 ]
93+
// A => [ 2.0, 4.0, 6.0, 2.0, 5.0, 8.0, 3.0, 2.0, 10.0 ]
9894
```
9995

10096
The function has the following additional parameters:
@@ -107,8 +103,6 @@ The function has the following additional parameters:
107103
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example,
108104

109105
```javascript
110-
var Float64Array = require( '@stdlib/array/float64' );
111-
112106
var A = [ 1.0, 2.0, 3.0, 2.0, 1.0, 2.0, 3.0, 2.0, 1.0 ];
113107
var x = [ 1.0, 2.0, 3.0, 4.0, 5.0 ];
114108

0 commit comments

Comments
 (0)