You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/_tools/eslint/rules/README.md
+3
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,7 @@ var eslint = rules;
81
81
- <spanclass="signature">[`repl-namespace-order`][@stdlib/_tools/eslint/rules/repl-namespace-order]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule to enforce that packages are added to a REPL namespace object in alphabetical order according to alias (namespace key).</span>
82
82
- <spanclass="signature">[`require-file-extensions`][@stdlib/_tools/eslint/rules/require-file-extensions]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule enforcing that `require()` calls of files end with a whitelisted file extension.</span>
83
83
- <spanclass="signature">[`require-globals`][@stdlib/_tools/eslint/rules/require-globals]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule enforcing that specified global variables are explicitly required.</span>
84
+
- <spanclass="signature">[`require-last-path-relative`][@stdlib/_tools/eslint/rules/require-last-path-relative]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule enforcing that the last `require` statement is a relative path.</span>
84
85
- <spanclass="signature">[`require-leading-slash`][@stdlib/_tools/eslint/rules/require-leading-slash]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule disallowing `require()` calls of relative paths which do not begin with a leading `./`.</span>
85
86
- <spanclass="signature">[`require-order`][@stdlib/_tools/eslint/rules/require-order]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule enforcing a specified order of `require()` calls.</span>
86
87
- <spanclass="signature">[`require-spaces`][@stdlib/_tools/eslint/rules/require-spaces]</span><spanclass="delimiter">: </span><spanclass="description">ESLint rule enforcing spaces in `require()` statements.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/ops/README.md
-3
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,6 @@ The namespace contains the following functions:
50
50
- <spanclass="signature">[`cnegf( z )`][@stdlib/math/base/ops/cnegf]</span><spanclass="delimiter">: </span><spanclass="description">negate a single-precision complex floating-point number.</span>
- <spanclass="signature">[`divf( x, y )`][@stdlib/number/float32/base/div]</span><spanclass="delimiter">: </span><spanclass="description">divide two single-precision floating-point numbers.</span>
54
53
- <spanclass="signature">[`imul( a, b )`][@stdlib/math/base/ops/imul]</span><spanclass="delimiter">: </span><spanclass="description">perform C-like multiplication of two signed 32-bit integers.</span>
55
54
- <spanclass="signature">[`imuldw( a, b )`][@stdlib/math/base/ops/imuldw]</span><spanclass="delimiter">: </span><spanclass="description">compute the double word product of two signed 32-bit integers.</span>
56
55
- <spanclass="signature">[`mulf( x, y )`][@stdlib/math/base/ops/mulf]</span><spanclass="delimiter">: </span><spanclass="description">multiply two single-precision floating-point numbers.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/README.md
+3-6
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,6 @@ The namespace contains the following statistical functions:
71
71
- <spanclass="signature">[`dmskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a double-precision floating-point strided array according to a mask.</span>
72
72
- <spanclass="signature">[`dmskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskmin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a double-precision floating-point strided array according to a mask.</span>
73
73
- <spanclass="signature">[`dmskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a double-precision floating-point strided array according to a mask.</span>
74
-
- <spanclass="signature">[`dnanmean( N, x, strideX )`][@stdlib/stats/strided/dnanmean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values.</span>
75
74
- <spanclass="signature">[`dnanmeanors( N, x, strideX )`][@stdlib/stats/base/dnanmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation.</span>
76
75
- <spanclass="signature">[`dnanmeanpn( N, x, strideX )`][@stdlib/stats/base/dnanmeanpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using a two-pass error correction algorithm.</span>
77
76
- <spanclass="signature">[`dnanmeanpw( N, x, strideX )`][@stdlib/stats/base/dnanmeanpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using pairwise summation.</span>
@@ -90,10 +89,10 @@ The namespace contains the following statistical functions:
90
89
- <spanclass="signature">[`dnanstdevyc( N, correction, x, stride )`][@stdlib/stats/base/dnanstdevyc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
91
90
- <spanclass="signature">[`dnanvariance( N, correction, x, stride )`][@stdlib/stats/base/dnanvariance]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array ignoring `NaN` values.</span>
92
91
- <spanclass="signature">[`dnanvariancech( N, correction, x, stride )`][@stdlib/stats/base/dnanvariancech]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass trial mean algorithm.</span>
93
-
- <spanclass="signature">[`dnanvariancepn( N, correction, x, stride )`][@stdlib/stats/base/dnanvariancepn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using a two-pass algorithm.</span>
92
+
- <spanclass="signature">[`dnanvariancepn( N, correction, x, strideX )`][@stdlib/stats/base/dnanvariancepn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using a two-pass algorithm.</span>
94
93
- <spanclass="signature">[`dnanvariancetk( N, correction, x, strideX )`][@stdlib/stats/base/dnanvariancetk]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass textbook algorithm.</span>
95
-
- <spanclass="signature">[`dnanvariancewd( N, correction, x, stride )`][@stdlib/stats/base/dnanvariancewd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using Welford's algorithm.</span>
96
-
- <spanclass="signature">[`dnanvarianceyc( N, correction, x, stride )`][@stdlib/stats/base/dnanvarianceyc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
94
+
- <spanclass="signature">[`dnanvariancewd( N, correction, x, strideX )`][@stdlib/stats/base/dnanvariancewd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using Welford's algorithm.</span>
95
+
- <spanclass="signature">[`dnanvarianceyc( N, correction, x, strideX )`][@stdlib/stats/base/dnanvarianceyc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
97
96
- <spanclass="signature">[`drange( N, x, strideX )`][@stdlib/stats/base/drange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a double-precision floating-point strided array.</span>
98
97
- <spanclass="signature">[`dsem( N, correction, x, stride )`][@stdlib/stats/base/dsem]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard error of the mean of a double-precision floating-point strided array.</span>
99
98
- <spanclass="signature">[`dsemch( N, correction, x, strideX )`][@stdlib/stats/base/dsemch]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard error of the mean of a double-precision floating-point strided array using a one-pass trial mean algorithm.</span>
0 commit comments