Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/ext/base/sdiff/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ The function has the following parameters:
- **workspace**: workspace [`Float32Array`][@stdlib/array/float32]. Must have `N + N1 + N2 - 1` elements.
- **strideW**: stride length for `workspace`.

The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to differences of every other element:
The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to compute differences of every other element:

```javascript
var Float32Array = require( '@stdlib/array/float32' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
// MODULES //

var isInteger = require( '@stdlib/math/base/assert/is-integer' );
var isnan = require( '@stdlib/math/base/assert/is-nan' );
var ln = require( '@stdlib/math/base/special/ln' );


Expand Down Expand Up @@ -64,8 +63,6 @@ var ln = require( '@stdlib/math/base/special/ln' );
*/
function entropy( a, b ) {
if (
isnan( a ) ||
isnan( b ) ||
!isInteger( a ) ||
!isInteger( b ) ||
a > b
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

// MODULES //

var isnan = require( '@stdlib/math/base/assert/is-nan' );
var isInteger = require( '@stdlib/math/base/assert/is-integer' );
var pow = require( '@stdlib/math/base/special/pow' );

Expand Down Expand Up @@ -65,8 +64,6 @@ var pow = require( '@stdlib/math/base/special/pow' );
function kurtosis( a, b ) {
var n2;
if (
isnan( a ) ||
isnan( b ) ||
!isInteger( a ) ||
!isInteger( b ) ||
a > b
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

// MODULES //

var isnan = require( '@stdlib/math/base/assert/is-nan' );
var isInteger = require( '@stdlib/math/base/assert/is-integer' );


Expand Down Expand Up @@ -63,8 +62,6 @@ var isInteger = require( '@stdlib/math/base/assert/is-integer' );
*/
function mean( a, b ) {
if (
isnan( a ) ||
isnan( b ) ||
!isInteger( a ) ||
!isInteger( b ) ||
a > b
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

// MODULES //

var isnan = require( '@stdlib/math/base/assert/is-nan' );
var isInteger = require( '@stdlib/math/base/assert/is-integer' );


Expand Down Expand Up @@ -63,8 +62,6 @@ var isInteger = require( '@stdlib/math/base/assert/is-integer' );
*/
function median( a, b ) {
if (
isnan( a ) ||
isnan( b ) ||
!isInteger( a ) ||
!isInteger( b ) ||
a > b
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

// MODULES //

var isnan = require( '@stdlib/math/base/assert/is-nan' );
var isInteger = require( '@stdlib/math/base/assert/is-integer' );


Expand Down Expand Up @@ -63,8 +62,6 @@ var isInteger = require( '@stdlib/math/base/assert/is-integer' );
*/
function skewness( a, b ) {
if (
isnan( a ) ||
isnan( b ) ||
!isInteger( a ) ||
!isInteger( b ) ||
a > b
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

// MODULES //

var isnan = require( '@stdlib/math/base/assert/is-nan' );
var isInteger = require( '@stdlib/math/base/assert/is-integer' );
var pow = require( '@stdlib/math/base/special/pow' );
var sqrt = require( '@stdlib/math/base/special/sqrt' );
Expand Down Expand Up @@ -70,8 +69,6 @@ var SQRT1O12 = sqrt( 1.0/12.0 );
*/
function stdev( a, b ) {
if (
isnan( a ) ||
isnan( b ) ||
!isInteger( a ) ||
!isInteger( b ) ||
a > b
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

// MODULES //

var isnan = require( '@stdlib/math/base/assert/is-nan' );
var isInteger = require( '@stdlib/math/base/assert/is-integer' );
var pow = require( '@stdlib/math/base/special/pow' );

Expand Down Expand Up @@ -64,8 +63,6 @@ var pow = require( '@stdlib/math/base/special/pow' );
*/
function variance( a, b ) {
if (
isnan( a ) ||
isnan( b ) ||
!isInteger( a ) ||
!isInteger( b ) ||
a > b
Expand Down