diff --git a/lib/node_modules/@stdlib/blas/ext/base/gfirst-index-less-than/README.md b/lib/node_modules/@stdlib/blas/ext/base/gfirst-index-less-than/README.md index 9e6357950fa0..faa848dfae6e 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/gfirst-index-less-than/README.md +++ b/lib/node_modules/@stdlib/blas/ext/base/gfirst-index-less-than/README.md @@ -98,12 +98,8 @@ var idx = gfirstIndexLessThan( 2, x1, 1, y1, 1 ); // returns 1 ``` - - #### gfirstIndexLessThan.ndarray( N, x, strideX, offsetX, y, strideY, offsetY ) - - Returns the index of the first element in a strided array which is less than a corresponding element in another strided array using alternative indexing semantics. ```javascript @@ -121,8 +117,6 @@ The function has the following additional parameters: 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, to access only the last three elements of each strided array: - - ```javascript var x = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]; var y = [ 9.0, 9.0, 9.0, 0.0, 9.0, 9.0 ]; diff --git a/lib/node_modules/@stdlib/fft/base/fftpack/sinti/README.md b/lib/node_modules/@stdlib/fft/base/fftpack/sinti/README.md index 456ca6376d16..3b63a5e9b1a6 100644 --- a/lib/node_modules/@stdlib/fft/base/fftpack/sinti/README.md +++ b/lib/node_modules/@stdlib/fft/base/fftpack/sinti/README.md @@ -63,7 +63,7 @@ var sineTable = workspace.slice( 0, floor( N/2 ) ); var twiddleFactors = workspace.slice( floor( 3*N/2 ) + 1, floor( 5*N/2 ) + 2 ); // returns [ ~0.707, ~0.707, 0, 0, 0, 0, 0, 0 ] -var factors = workspace.slice( floor( 5*N/2 ) + 2, floor(5*N/2) + 2 + 4 ); +var factors = workspace.slice( floor( 5*N/2 ) + 2, floor( 5*N/2 ) + 2 + 4 ); // returns [ 8, 2, 2, 4 ] ``` diff --git a/lib/node_modules/@stdlib/fft/base/fftpack/sinti/docs/types/index.d.ts b/lib/node_modules/@stdlib/fft/base/fftpack/sinti/docs/types/index.d.ts index e728169090df..58cd8e06ba3d 100644 --- a/lib/node_modules/@stdlib/fft/base/fftpack/sinti/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/fft/base/fftpack/sinti/docs/types/index.d.ts @@ -54,7 +54,7 @@ import { Collection } from '@stdlib/types/array'; * var twiddleFactors = workspace.slice( floor( 3*N/2 ) + 1, floor( 5*N/2 ) + 2 ); * // returns [ ~0.707, ~0.707, 0, 0, 0, 0, 0, 0 ] * -* var factors = workspace.slice( floor( 5*N/2 ) + 2, floor(5*N/2) + 2 + 4 ); +* var factors = workspace.slice( floor( 5*N/2 ) + 2, floor( 5*N/2 ) + 2 + 4 ); * // returns [ 8, 2, 2, 4 ] */ declare function sinti>( N: number, workspace: T, strideW: number, offsetW: number ): T; diff --git a/lib/node_modules/@stdlib/fft/base/fftpack/sinti/lib/index.js b/lib/node_modules/@stdlib/fft/base/fftpack/sinti/lib/index.js index a5d299466f1d..409ddc984fe1 100644 --- a/lib/node_modules/@stdlib/fft/base/fftpack/sinti/lib/index.js +++ b/lib/node_modules/@stdlib/fft/base/fftpack/sinti/lib/index.js @@ -43,7 +43,7 @@ * var twiddleFactors = workspace.slice( floor( 3*N/2 ) + 1, floor( 5*N/2 ) + 2 ); * // returns [ ~0.707, ~0.707, 0, 0, 0, 0, 0, 0 ] * -* var factors = workspace.slice( floor( 5*N/2 ) + 2, floor(5*N/2) + 2 + 4 ); +* var factors = workspace.slice( floor( 5*N/2 ) + 2, floor( 5*N/2 ) + 2 + 4 ); * // returns [ 8, 2, 2, 4 ] */ diff --git a/lib/node_modules/@stdlib/fft/base/fftpack/sinti/lib/main.js b/lib/node_modules/@stdlib/fft/base/fftpack/sinti/lib/main.js index 996bea9a1f79..45262315d789 100644 --- a/lib/node_modules/@stdlib/fft/base/fftpack/sinti/lib/main.js +++ b/lib/node_modules/@stdlib/fft/base/fftpack/sinti/lib/main.js @@ -157,7 +157,7 @@ var rffti = require( '@stdlib/fft/base/fftpack/rffti' ); * var twiddleFactors = workspace.slice( floor( 3*N/2 ) + 1, floor( 5*N/2 ) + 2 ); * // returns [ ~0.707, ~0.707, 0, 0, 0, 0, 0, 0 ] * -* var factors = workspace.slice( floor( 5*N/2 ) + 2, floor(5*N/2) + 2 + 4 ); +* var factors = workspace.slice( floor( 5*N/2 ) + 2, floor( 5*N/2 ) + 2 + 4 ); * // returns [ 8, 2, 2, 4 ] */ function sinti( N, workspace, strideW, offsetW ) {