Skip to content

Commit b0be91f

Browse files
authored
Merge branch 'develop' into blas/didxofcol
2 parents 14184d7 + 86e9aee commit b0be91f

9 files changed

Lines changed: 23 additions & 12 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The namespace exposes the following APIs:
4747

4848
- <span class="signature">[`caxpy( arrays )`][@stdlib/blas/base/ndarray/caxpy]</span><span class="delimiter">: </span><span class="description">multiply a one-dimensional single-precision complex floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional single-precision complex floating-point ndarray `y`.</span>
4949
- <span class="signature">[`ccopy( arrays )`][@stdlib/blas/base/ndarray/ccopy]</span><span class="delimiter">: </span><span class="description">copy values from a one-dimensional single-precision complex floating-point ndarray `x` into a one-dimensional single-precision complex floating-point ndarray `y`.</span>
50-
- <span class="signature">[`cswap( arrays )`][@stdlib/blas/base/ndarray/cswap]</span><span class="delimiter">: </span><span class="description">interchange two one-dimensional complex single-precision floating-point ndarrays.</span>
50+
- <span class="signature">[`cswap( arrays )`][@stdlib/blas/base/ndarray/cswap]</span><span class="delimiter">: </span><span class="description">interchange two one-dimensional single-precision complex floating-point ndarrays.</span>
5151
- <span class="signature">[`dasum( arrays )`][@stdlib/blas/base/ndarray/dasum]</span><span class="delimiter">: </span><span class="description">calculate the sum of absolute values for all elements in a one-dimensional double-precision floating-point ndarray.</span>
5252
- <span class="signature">[`daxpy( arrays )`][@stdlib/blas/base/ndarray/daxpy]</span><span class="delimiter">: </span><span class="description">multiply a one-dimensional double-precision floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional double-precision floating-point ndarray `y`.</span>
5353
- <span class="signature">[`dcopy( arrays )`][@stdlib/blas/base/ndarray/dcopy]</span><span class="delimiter">: </span><span class="description">copy values from a one-dimensional double-precision floating-point ndarray `x` into a one-dimensional double-precision floating-point ndarray `y`.</span>
@@ -65,7 +65,7 @@ The namespace exposes the following APIs:
6565
- <span class="signature">[`sswap( arrays )`][@stdlib/blas/base/ndarray/sswap]</span><span class="delimiter">: </span><span class="description">interchange two one-dimensional single-precision floating-point ndarrays.</span>
6666
- <span class="signature">[`zaxpy( arrays )`][@stdlib/blas/base/ndarray/zaxpy]</span><span class="delimiter">: </span><span class="description">multiply a one-dimensional double-precision complex floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional double-precision complex floating-point ndarray `y`.</span>
6767
- <span class="signature">[`zcopy( arrays )`][@stdlib/blas/base/ndarray/zcopy]</span><span class="delimiter">: </span><span class="description">copy values from a one-dimensional double-precision complex floating-point ndarray `x` into a one-dimensional double-precision complex floating-point ndarray `y`.</span>
68-
- <span class="signature">[`zswap( arrays )`][@stdlib/blas/base/ndarray/zswap]</span><span class="delimiter">: </span><span class="description">interchange two one-dimensional complex double-precision floating-point ndarrays.</span>
68+
- <span class="signature">[`zswap( arrays )`][@stdlib/blas/base/ndarray/zswap]</span><span class="delimiter">: </span><span class="description">interchange two one-dimensional double-precision complex floating-point ndarrays.</span>
6969

7070
</div>
7171

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ interface Namespace {
108108
ccopy: typeof ccopy;
109109

110110
/**
111-
* Interchanges two one-dimensional complex single-precision floating-point ndarrays.
111+
* Interchanges two one-dimensional single-precision complex floating-point ndarrays.
112112
*
113113
* ## Notes
114114
*
@@ -599,7 +599,7 @@ interface Namespace {
599599
zcopy: typeof zcopy;
600600

601601
/**
602-
* Interchanges two one-dimensional complex double-precision floating-point ndarrays.
602+
* Interchanges two one-dimensional double-precision complex floating-point ndarrays.
603603
*
604604
* ## Notes
605605
*

lib/node_modules/@stdlib/blas/ext/base/dcartesian-power/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ interface Routine {
4343
* @returns output array
4444
*
4545
* @example
46-
* var Float64Array = require( `@stdlib/array/float64` );
46+
* var Float64Array = require( '@stdlib/array/float64' );
4747
*
4848
* var x = new Float64Array( [ 1.0, 2.0 ] );
4949
* var out = new Float64Array( 8 );
@@ -72,7 +72,7 @@ interface Routine {
7272
* @returns output array
7373
*
7474
* @example
75-
* var Float64Array = require( `@stdlib/array/float64` );
75+
* var Float64Array = require( '@stdlib/array/float64' );
7676
*
7777
* var x = new Float64Array( [ 1.0, 2.0 ] );
7878
* var out = new Float64Array( 8 );
@@ -96,7 +96,7 @@ interface Routine {
9696
* @returns output array
9797
*
9898
* @example
99-
* var Float64Array = require( `@stdlib/array/float64` );
99+
* var Float64Array = require( '@stdlib/array/float64' );
100100
*
101101
* var x = new Float64Array( [ 1.0, 2.0 ] );
102102
* var out = new Float64Array( 8 );
@@ -105,7 +105,7 @@ interface Routine {
105105
* // out => <Float64Array>[ 1.0, 1.0, 1.0, 2.0, 2.0, 1.0, 2.0, 2.0 ]
106106
*
107107
* @example
108-
* var Float64Array = require( `@stdlib/array/float64` );
108+
* var Float64Array = require( '@stdlib/array/float64' );
109109
*
110110
* var x = new Float64Array( [ 1.0, 2.0 ] );
111111
* var out = new Float64Array( 8 );

lib/node_modules/@stdlib/constants/array/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
1414
}
1515
],
16-
"main": "lib/index.js",
16+
"main": "./lib",
1717
"directories": {
1818
"doc": "./docs",
1919
"example": "./examples",

lib/node_modules/@stdlib/constants/path/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
1414
}
1515
],
16-
"main": "lib/index.js",
16+
"main": "./lib",
1717
"directories": {
1818
"doc": "./docs",
1919
"example": "./examples",

lib/node_modules/@stdlib/constants/unicode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
1414
}
1515
],
16-
"main": "lib/index.js",
16+
"main": "./lib",
1717
"directories": {
1818
"doc": "./docs",
1919
"example": "./examples",

lib/node_modules/@stdlib/ndarray/base/diagonal/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ limitations under the License.
2222

2323
> Return a view of the diagonal of a matrix (or stack of matrices).
2424
25+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
26+
2527
<section class="intro">
2628

2729
For an `M`-by-`N` matrix `A`, the `k`-th diagonal is defined as
@@ -60,6 +62,8 @@ the main diagonal is `[ a_{0,0}, a_{1,1}, a_{2,2} ]`, the super-diagonal `k = 1`
6062

6163
<!-- /.intro -->
6264

65+
<!-- Package usage documentation. -->
66+
6367
<section class="usage">
6468

6569
## Usage
@@ -93,6 +97,8 @@ The function accepts the following arguments:
9397

9498
<!-- /.usage -->
9599

100+
<!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
101+
96102
<section class="notes">
97103

98104
## Notes
@@ -107,6 +113,8 @@ The function accepts the following arguments:
107113

108114
<!-- /.notes -->
109115

116+
<!-- Package usage examples. -->
117+
110118
<section class="examples">
111119

112120
## Examples
@@ -141,6 +149,8 @@ console.log( ndarray2array( y ) );
141149

142150
<!-- /.examples -->
143151

152+
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
153+
144154
<section class="references">
145155

146156
</section>

lib/node_modules/@stdlib/ndarray/last/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222

2323
> Return a read-only view of the last element (or subarray) along one or more [`ndarray`][@stdlib/ndarray/ctor] dimensions.
2424
25-
<!-- Section to include introductory text. Make sure to keep an empty line after the intro section element. -->
25+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
2626

2727
<section class="intro">
2828

lib/node_modules/@stdlib/symbol/async-iterator/lib/main.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
// MODULES //
2222

2323
var hasAsyncIteratorSymbolSupport = require( '@stdlib/assert/has-async-iterator-symbol-support' ); // eslint-disable-line id-length
24+
var Symbol = require( '@stdlib/symbol/ctor' );
2425

2526

2627
// MAIN //

0 commit comments

Comments
 (0)