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/blas/ext/README.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ The namespace contains the following:
46
46
<divclass="namespace-toc">
47
47
48
48
- <spanclass="signature">[`base`][@stdlib/blas/ext/base]</span><spanclass="delimiter">: </span><spanclass="description">base (i.e., lower-level) extensions to basic linear algebra subprograms (BLAS).</span>
49
+
- <spanclass="signature">[`sum( x[, options] )`][@stdlib/blas/ext/sum]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum along one or more ndarray dimensions.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/base/README.md
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@ var o = ns;
43
43
44
44
<divclass="namespace-toc">
45
45
46
+
- <spanclass="signature">[`cfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/cfill]</span><spanclass="delimiter">: </span><spanclass="description">fill a single-precision complex floating-point strided array with a specified scalar constant.</span>
46
47
- <spanclass="signature">[`dapx( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dapx]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each element in a double-precision floating-point strided array.</span>
47
48
- <spanclass="signature">[`dapxsum( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dapxsum]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each double-precision floating-point strided array element and compute the sum.</span>
48
49
- <spanclass="signature">[`dapxsumkbn( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dapxsumkbn]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each double-precision floating-point strided array element and compute the sum using an improved Kahan–Babuška algorithm.</span>
@@ -121,6 +122,7 @@ var o = ns;
121
122
- <spanclass="signature">[`gsumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/gsumkbn2]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements using a second-order iterative Kahan–Babuška algorithm.</span>
122
123
- <spanclass="signature">[`gsumors( N, x, strideX )`][@stdlib/blas/ext/base/gsumors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements using ordinary recursive summation.</span>
123
124
- <spanclass="signature">[`gsumpw( N, x, strideX )`][@stdlib/blas/ext/base/gsumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements using pairwise summation.</span>
- <spanclass="signature">[`sapx( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapx]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each element in a single-precision floating-point strided array.</span>
125
127
- <spanclass="signature">[`sapxsum( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapxsum]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each single-precision floating-point strided array element and compute the sum.</span>
126
128
- <spanclass="signature">[`sapxsumkbn( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapxsumkbn]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each single-precision floating-point strided array element and compute the sum using an improved Kahan–Babuška algorithm.</span>
@@ -158,6 +160,7 @@ var o = ns;
158
160
- <spanclass="signature">[`ssumors( N, x, strideX )`][@stdlib/blas/ext/base/ssumors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of single-precision floating-point strided array elements using ordinary recursive summation.</span>
159
161
- <spanclass="signature">[`ssumpw( N, x, strideX )`][@stdlib/blas/ext/base/ssumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of single-precision floating-point strided array elements using pairwise summation.</span>
160
162
- <spanclass="signature">[`wasm`][@stdlib/blas/ext/base/wasm]</span><spanclass="delimiter">: </span><spanclass="description">extensions to basic linear algebra subprograms (BLAS) compiled to WebAssembly.</span>
163
+
- <spanclass="signature">[`zfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/zfill]</span><spanclass="delimiter">: </span><spanclass="description">fill a double-precision complex floating-point strided array with a specified scalar constant.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/base/ndarray/README.md
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,17 @@ The namespace exposes the following APIs:
43
43
44
44
<!-- <toc pattern="*"> -->
45
45
46
+
<divclass="namespace-toc">
47
+
48
+
- <spanclass="signature">[`dcusum( arrays )`][@stdlib/blas/ext/base/ndarray/dcusum]</span><spanclass="delimiter">: </span><spanclass="description">compute the cumulative sum of a one-dimensional double-precision floating-point ndarray.</span>
49
+
- <spanclass="signature">[`dsum( arrays )`][@stdlib/blas/ext/base/ndarray/dsum]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional double-precision floating-point ndarray.</span>
50
+
- <spanclass="signature">[`gcusum( arrays )`][@stdlib/blas/ext/base/ndarray/gcusum]</span><spanclass="delimiter">: </span><spanclass="description">compute the cumulative sum of a one-dimensional ndarray.</span>
51
+
- <spanclass="signature">[`gsum( arrays )`][@stdlib/blas/ext/base/ndarray/gsum]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional ndarray.</span>
52
+
- <spanclass="signature">[`scusum( arrays )`][@stdlib/blas/ext/base/ndarray/scusum]</span><spanclass="delimiter">: </span><spanclass="description">compute the cumulative sum of a one-dimensional single-precision floating-point ndarray.</span>
53
+
- <spanclass="signature">[`ssum( arrays )`][@stdlib/blas/ext/base/ndarray/ssum]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional single-precision floating-point ndarray.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/ndarray/base/assert/README.md
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ var o = ns;
46
46
- <spanclass="signature">[`hasEqualShape( x, y )`][@stdlib/ndarray/base/assert/has-equal-shape]</span><spanclass="delimiter">: </span><spanclass="description">test if two ndarrays have the same shape.</span>
47
47
- <spanclass="signature">[`isAllowedDataTypeCast( from, to, casting )`][@stdlib/ndarray/base/assert/is-allowed-data-type-cast]</span><spanclass="delimiter">: </span><spanclass="description">determine whether an ndarray data type can be cast to another ndarray data type according to a specified casting mode.</span>
48
48
- <spanclass="signature">[`isBooleanDataType( value )`][@stdlib/ndarray/base/assert/is-boolean-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported ndarray boolean data type.</span>
49
+
- <spanclass="signature">[`isBooleanIndexDataType( value )`][@stdlib/ndarray/base/assert/is-boolean-index-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported ndarray boolean index data type.</span>
49
50
- <spanclass="signature">[`isBufferLengthCompatibleShape( len, shape )`][@stdlib/ndarray/base/assert/is-buffer-length-compatible-shape]</span><spanclass="delimiter">: </span><spanclass="description">determine if a buffer length is compatible with an array shape.</span>
50
51
- <spanclass="signature">[`isBufferLengthCompatible( len, shape, strides, offset )`][@stdlib/ndarray/base/assert/is-buffer-length-compatible]</span><spanclass="delimiter">: </span><spanclass="description">determine if a buffer length is compatible with ndarray meta data.</span>
51
52
- <spanclass="signature">[`isCastingMode( value )`][@stdlib/ndarray/base/assert/is-casting-mode]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported ndarray casting mode.</span>
@@ -56,8 +57,11 @@ var o = ns;
56
57
- <spanclass="signature">[`isContiguous( shape, strides, offset )`][@stdlib/ndarray/base/assert/is-contiguous]</span><spanclass="delimiter">: </span><spanclass="description">determine if an array is contiguous.</span>
57
58
- <spanclass="signature">[`isDataType( value )`][@stdlib/ndarray/base/assert/is-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported ndarray data type.</span>
58
59
- <spanclass="signature">[`isFloatingPointDataType( value )`][@stdlib/ndarray/base/assert/is-floating-point-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported ndarray floating-point data type.</span>
60
+
- <spanclass="signature">[`isIndexDataType( value )`][@stdlib/ndarray/base/assert/is-index-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported ndarray index data type.</span>
59
61
- <spanclass="signature">[`isIndexMode( value )`][@stdlib/ndarray/base/assert/is-index-mode]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported ndarray index mode.</span>
60
62
- <spanclass="signature">[`isIntegerDataType( value )`][@stdlib/ndarray/base/assert/is-integer-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported ndarray integer data type.</span>
63
+
- <spanclass="signature">[`isIntegerIndexDataType( value )`][@stdlib/ndarray/base/assert/is-integer-index-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported ndarray integer index data type.</span>
64
+
- <spanclass="signature">[`isMaskIndexDataType( value )`][@stdlib/ndarray/base/assert/is-mask-index-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported ndarray mask index data type.</span>
61
65
- <spanclass="signature">[`isMostlySafeDataTypeCast( from, to )`][@stdlib/ndarray/base/assert/is-mostly-safe-data-type-cast]</span><spanclass="delimiter">: </span><spanclass="description">determine whether an ndarray data type can be safely cast or, for floating-point data types, downcast to another ndarray data type.</span>
62
66
- <spanclass="signature">[`isNumericDataType( value )`][@stdlib/ndarray/base/assert/is-numeric-data-type]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is a supported ndarray numeric data type.</span>
63
67
- <spanclass="signature">[`isOrder( value )`][@stdlib/ndarray/base/assert/is-order]</span><spanclass="delimiter">: </span><spanclass="description">test if an input value is an ndarray order.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ The namespace contains the following statistical functions:
72
72
- <spanclass="signature">[`dnanmskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dnanmskrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a double-precision floating-point strided array according to a mask, ignoring `NaN` values.</span>
73
73
- <spanclass="signature">[`dnanstdev( N, correction, x, stride )`][@stdlib/stats/base/dnanstdev]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a double-precision floating-point strided array ignoring `NaN` values.</span>
74
74
- <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>
75
-
- <spanclass="signature">[`dsempn( N, correction, x, stride )`][@stdlib/stats/base/dsempn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard error of the mean of a double-precision floating-point strided array using a two-pass algorithm.</span>
75
+
- <spanclass="signature">[`dsempn( N, correction, x, strideX )`][@stdlib/stats/base/dsempn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard error of the mean of a double-precision floating-point strided array using a two-pass algorithm.</span>
76
76
- <spanclass="signature">[`dstdev( N, correction, x, stride )`][@stdlib/stats/base/dstdev]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a double-precision floating-point strided array.</span>
77
77
- <spanclass="signature">[`dvarm( N, mean, correction, x, stride )`][@stdlib/stats/base/dvarm]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array provided a known mean.</span>
78
78
- <spanclass="signature">[`dvarmpn( N, mean, correction, x, stride )`][@stdlib/stats/base/dvarmpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array provided a known mean and using Neely's correction algorithm.</span>
0 commit comments