Skip to content

Commit cc812eb

Browse files
nakul-krishnakumarkgryte
authored andcommitted
remove: remove dchebychev from namespace
This commit removes the `dchebychev` symbol from the `@stdlib/stats/strided/distances` namespace due to a package migration. BREAKING CHANGE: remove `dchebychev` To migrate, users should access the symbol `dchebyshev` via the `@stdlib/stats/strided/distances` namespace.
1 parent 8a0bdab commit cc812eb

File tree

2 files changed

+0
-40
lines changed

2 files changed

+0
-40
lines changed

lib/node_modules/@stdlib/stats/strided/distances/docs/types/index.d.ts

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
/* eslint-disable max-lines */
2222

23-
import dchebychev = require( '@stdlib/stats/strided/distances/dchebychev' );
2423
import dcityblock = require( '@stdlib/stats/strided/distances/dcityblock' );
2524
import dcosineDistance = require( '@stdlib/stats/strided/distances/dcosine-distance' );
2625
import dcosineSimilarity = require( '@stdlib/stats/strided/distances/dcosine-similarity' );
@@ -31,36 +30,6 @@ import dsquaredEuclidean = require( '@stdlib/stats/strided/distances/dsquared-eu
3130
* Interface describing the `distances` namespace.
3231
*/
3332
interface Namespace {
34-
/**
35-
* Computes the Chebychev distance between two double-precision floating-point strided arrays.
36-
*
37-
* @param N - number of indexed elements
38-
* @param x - first input array
39-
* @param strideX - `x` stride length
40-
* @param y - second input array
41-
* @param strideY - `y` stride length
42-
* @returns Chebychev distance
43-
*
44-
* @example
45-
* var Float64Array = require( '@stdlib/array/float64' );
46-
*
47-
* var x = new Float64Array( [ 4.0, 2.0, -3.0, 5.0, -1.0 ] );
48-
* var y = new Float64Array( [ 2.0, 6.0, -1.0, -4.0, 8.0 ] );
49-
*
50-
* var z = ns.dchebychev( x.length, x, 1, y, 1 );
51-
* // returns 9.0
52-
*
53-
* @example
54-
* var Float64Array = require( '@stdlib/array/float64' );
55-
*
56-
* var x = new Float64Array( [ 4.0, 2.0, -3.0, 5.0, -1.0 ] );
57-
* var y = new Float64Array( [ 2.0, 6.0, -1.0, -4.0, 8.0 ] );
58-
*
59-
* var z = ns.dchebychev.ndarray( x.length, x, 1, 0, y, 1, 0 );
60-
* // returns 9.0
61-
*/
62-
dchebychev: typeof dchebychev;
63-
6433
/**
6534
* Computes the city block (Manhattan) distance between two double-precision floating-point strided arrays.
6635
*

lib/node_modules/@stdlib/stats/strided/distances/lib/index.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,6 @@ var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
3636
*/
3737
var ns = {};
3838

39-
/**
40-
* @name dchebychev
41-
* @memberof ns
42-
* @readonly
43-
* @type {Function}
44-
* @see {@link module:@stdlib/stats/strided/distances/dchebychev}
45-
*/
46-
setReadOnly( ns, 'dchebychev', require( '@stdlib/stats/strided/distances/dchebychev' ) );
47-
4839
/**
4940
* @name dcityblock
5041
* @memberof ns

0 commit comments

Comments
 (0)