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
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var ndarray = require( './ndarray.js' );
/**
* Computes the correlation distance between two double-precision floating-point strided arrays.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {NonNegativeInteger} N - number of indexed elements
* @param {Float64Array} x - first input array
* @param {integer} strideX - stride length of `x`
* @param {Float64Array} y - second input array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var addon = require( './../src/addon.node' );
/**
* Computes the correlation distance between two double-precision floating-point strided arrays.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {NonNegativeInteger} N - number of indexed elements
* @param {Float64Array} x - first input array
* @param {integer} strideX - stride length of `x`
* @param {Float64Array} y - second input array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var dpcorr = require( '@stdlib/stats/strided/dpcorr' ).ndarray;
/**
* Computes the correlation distance between two double-precision floating-point strided arrays using alternative indexing semantics.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {NonNegativeInteger} N - number of indexed elements
* @param {Float64Array} x - first input array
* @param {integer} strideX - stride length of `x`
* @param {NonNegativeInteger} offsetX - starting index of `x`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var addon = require( './../src/addon.node' );
/**
* Computes the correlation distance between two double-precision floating-point strided arrays using alternative indexing semantics.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {NonNegativeInteger} N - number of indexed elements
* @param {Float64Array} x - first input array
* @param {integer} strideX - stride length of `x`
* @param {NonNegativeInteger} offsetX - starting index of `x`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"dcorrelation",
"correlation",
"distance",
"metric",
"strided",
"strided array",
"typed",
Expand Down