Skip to content

Commit 5d6b6f8

Browse files
committedMar 16, 2024·
Auto-generated commit
1 parent 52e3594 commit 5d6b6f8

File tree

12 files changed

+97
-53
lines changed

12 files changed

+97
-53
lines changed
 

‎CONTRIBUTORS

+14-14
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,26 @@
22
#
33
# Contributors listed in alphabetical order.
44

5-
Adarsh Palaskar <83298237+adarshpalaskar1@users.noreply.github.com>
6-
Aditya Sapra <110766802+adityacodes30@users.noreply.github.com>
5+
Adarsh Palaskar <adarshpalaskar99@gmail.com>
6+
Aditya Sapra <adityaework@gmail.com>
77
AgPriyanshu18 <113460573+AgPriyanshu18@users.noreply.github.com>
88
Ali Salesi <ali_sal1381@yahoo.com>
9-
Aman Bhansali <92033532+aman-095@users.noreply.github.com>
9+
Aman Bhansali <bhansali.1@iitj.ac.in>
1010
Amit Jimiwal <amitjimiwal45@gmail.com>
11-
Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
11+
Anudeep Sanapala <anudeep0306@gmail.com>
1212
Athan Reines <kgryte@gmail.com>
1313
Brendan Graetz <bguiz@users.noreply.github.com>
1414
Bruno Fenzl <brunofenzl@gmail.com>
15-
Chinmay J <86140365+JawHawk@users.noreply.github.com>
15+
Chinmay Joshi <86140365+JawHawk@users.noreply.github.com>
1616
Christopher Dambamuromo <chridam@gmail.com>
1717
Dan Rose <danoftheroses@gmail.com>
1818
Daniel Killenberger <daniel.killenberger@gmail.com>
1919
Dominik Moritz <domoritz@gmail.com>
2020
Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
2121
EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
2222
Frank Kovacs <fran70kk@gmail.com>
23-
GUNJ JOSHI <gunjjoshi8372@gmail.com>
24-
Golden <103646877+AuenKr@users.noreply.github.com>
23+
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
24+
Gunj Joshi <gunjjoshi8372@gmail.com>
2525
Harshita Kalani <harshitakalani02@gmail.com>
2626
Jaimin Godhani <112328542+Jai0401@users.noreply.github.com>
2727
James Gelok <jdgelok@gmail.com>
@@ -50,7 +50,7 @@ Pranav Goswami <goswami.4@iitj.ac.in>
5050
Praneki <97080887+PraneGIT@users.noreply.github.com>
5151
Pratik <97464067+Pratik772846@users.noreply.github.com>
5252
Priyansh <88396544+itsspriyansh@users.noreply.github.com>
53-
Raunak Kumar Gupta <95216822+raunak-dev-edu@users.noreply.github.com>
53+
Raunak Kumar Gupta <raunakmodanwal321@gmail.com>
5454
Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com>
5555
Ricky Reusser <rsreusser@gmail.com>
5656
Robert Gislason <gztown2216@yahoo.com>
@@ -59,16 +59,16 @@ Rutam <138517416+performant23@users.noreply.github.com>
5959
Ryan Seal <splrk@users.noreply.github.com>
6060
Sai Srikar Dumpeti <80447788+the-r3aper7@users.noreply.github.com>
6161
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
62-
Shashank Shekhar Singh <123410790+Shashankss1205@users.noreply.github.com>
62+
Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
6363
Shraddheya Shendre <shendreshraddheya@gmail.com>
64-
Shubham <shubh622005@gmail.com>
64+
Shubham Mishra <shubh622005@gmail.com>
6565
Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com>
66-
Spandan Barve <114365550+marsian83@users.noreply.github.com>
66+
Spandan Barve <contact@marsian.dev>
6767
Stephannie Jiménez Gacha <steff456@hotmail.com>
68-
Utkarsh <137638507+Ut-the-pro@users.noreply.github.com>
68+
Utkarsh <http://utkarsh11105@gmail.com>
69+
Utkarsh Raj <rajutkarsh2505@gmail.com>
70+
Varad Gupta <varadgupta21@gmail.com>
6971
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
7072
nishant-s7 <97207366+nishant-s7@users.noreply.github.com>
7173
orimiles5 <97595296+orimiles5@users.noreply.github.com>
7274
rei2hu <reimu@reimu.ws>
73-
utkarsh_raj <49344502+rajutkarsh07@users.noreply.github.com>
74-
vr-varad <114755221+vr-varad@users.noreply.github.com>

‎base/count-same-value/README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# countSameValue
2222

23-
> Count the number of elements that are equal to a given value in an array.
23+
> Count the number of elements in an array that are equal to a specified value.
2424
2525
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
2626

@@ -42,7 +42,7 @@ var countSameValue = require( '@stdlib/array/base/count-same-value' );
4242

4343
#### countSameValue( x, value )
4444

45-
Counts the number of elements that are equal to a given value in an array.
45+
Counts the number of elements in an array that are equal to a specified value.
4646

4747
```javascript
4848
var x = [ 0, 1, 0, 1, 2 ];
@@ -72,10 +72,12 @@ var out = countSameValue( x, 1 );
7272
<!-- eslint no-undef: "error" -->
7373

7474
```javascript
75-
var sample = require( '@stdlib/random/sample' );
75+
var bernoulli = require( '@stdlib/random/array/bernoulli' );
7676
var countSameValue = require( '@stdlib/array/base/count-same-value' );
7777

78-
var x = sample( [ 1, 2, 3, 4, 5 ] );
78+
var x = bernoulli( 10, 0.5, {
79+
'dtype': 'generic'
80+
});
7981
console.log( x );
8082

8183
var n = countSameValue( x, 1 );

‎base/count-same-value/docs/repl.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11

22
{{alias}}( x, value )
3-
Counts the number of elements that are equal to a given value in an array.
3+
Counts the number of elements in an array that are equal to a specified
4+
value.
45

56
Parameters
67
----------
@@ -13,7 +14,7 @@
1314
Returns
1415
-------
1516
out: integer
16-
Number of elements that are equal to the given value.
17+
Number of elements that are equal to the specified value.
1718

1819
Examples
1920
--------

‎base/count-same-value/docs/types/index.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
import { Collection } from '@stdlib/types/array';
2424

2525
/**
26-
* Counts the number of elements that are equal to a given value in an array.
26+
* Counts the number of elements in an array that are equal to a specified value.
2727
*
2828
* @param x - input array
29-
* @param value - given value
30-
* @returns number of elements that are equal to the given value
29+
* @param value - search value
30+
* @returns number of elements that are equal to a specified value
3131
*
3232
* @example
3333
* var x = [ 0, 1, 0, 1, 1 ];

‎base/count-same-value/examples/index.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@
1818

1919
'use strict';
2020

21-
var sample = require( '@stdlib/random/sample' );
21+
var bernoulli = require( '@stdlib/random/array/bernoulli' );
2222
var countSameValue = require( './../lib' );
2323

24-
var x = sample( [ 1, 2, 3, 4, 5 ] );
24+
var x = bernoulli( 10, 0.5, {
25+
'dtype': 'generic'
26+
});
2527
console.log( x );
2628

2729
var n = countSameValue( x, 1 );

‎base/count-same-value/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Count the number of elements that are equal to a given value in an array.
22+
* Count the number of elements in an array that are equal to a specified value.
2323
*
2424
* @module @stdlib/array/base/count-same-value
2525
*

‎base/count-same-value/lib/main.js

+20-21
Original file line numberDiff line numberDiff line change
@@ -21,30 +21,30 @@
2121
// MODULES //
2222

2323
var isComplexLike = require( '@stdlib/assert/is-complex-like' );
24-
var real = require( '@stdlib/complex/real' );
25-
var imag = require( '@stdlib/complex/imag' );
2624
var reinterpret = require( '@stdlib/strided/base/reinterpret-complex' );
2725
var isComplexTypedArray = require( './../../../base/assert/is-complex-typed-array' );
2826
var isAccessorArray = require( './../../../base/assert/is-accessor-array' );
2927
var resolveGetter = require( './../../../base/resolve-getter' );
3028
var isSameValue = require( '@stdlib/assert/is-same-value' );
29+
var real = require( '@stdlib/complex/real' );
30+
var imag = require( '@stdlib/complex/imag' );
3131

3232

3333
// FUNCTIONS //
3434

3535
/**
36-
* Counts the number of elements that are equal to a given value in an indexed array.
36+
* Counts the number of elements in an array that are equal to a specified value.
3737
*
3838
* @private
3939
* @param {Collection} x - input array
40-
* @param {*} value - given value
41-
* @returns {NonNegativeInteger} number of elements that are equal to the given value
40+
* @param {*} value - search value
41+
* @returns {NonNegativeInteger} number of elements that are equal to a specified value
4242
*
4343
* @example
44-
* var x = [ 0, 1, 0, 1 ];
44+
* var x = [ 0, 1, 0, 1, 1 ];
4545
*
4646
* var n = indexed( x, 1 );
47-
* // returns 2
47+
* // returns 3
4848
*/
4949
function indexed( x, value ) {
5050
var n;
@@ -60,20 +60,20 @@ function indexed( x, value ) {
6060
}
6161

6262
/**
63-
* Counts the number of elements that are equal to a given value in an accessor array.
63+
* Counts the number of elements in an accessor array that are equal to a specified value.
6464
*
6565
* @private
6666
* @param {Collection} x - input array
67-
* @param {*} value - given value
68-
* @returns {NonNegativeInteger} number of elements that are equal to the given value
67+
* @param {*} value - search value
68+
* @returns {NonNegativeInteger} number of elements that are equal to a provided value
6969
*
7070
* @example
7171
* var toAccessorArray = require( '@stdlib/array/base/to-accessor-array' );
7272
*
73-
* var x = toAccessorArray( [ 0, 1, 0, 1 ] );
73+
* var x = toAccessorArray( [ 0, 1, 0, 1, 1 ] );
7474
*
7575
* var n = accessors( x, 1 );
76-
* // returns 2
76+
* // returns 3
7777
*/
7878
function accessors( x, value ) {
7979
var get;
@@ -92,16 +92,16 @@ function accessors( x, value ) {
9292
}
9393

9494
/**
95-
* Counts the number of elements that are equal to a given value in a complex array.
95+
* Counts the number of elements in a complex array that are equal to a specified value.
9696
*
9797
* @private
9898
* @param {Collection} x - input array
99-
* @param {*} value - given value
100-
* @returns {NonNegativeInteger} number of elements that are equal to the given value
99+
* @param {*} value - search value
100+
* @returns {NonNegativeInteger} number of elements that are equal to a specified value
101101
*
102102
* @example
103-
* var Complex128 = require( '@stdlib/complex/float64' );
104103
* var Complex128Array = require( '@stdlib/array/complex128' );
104+
* var Complex128 = require( '@stdlib/complex/float64' );
105105
*
106106
* var x = new Complex128Array( [ 1.0, 2.0, 0.0, 0.0, 3.0, 4.0, 0.0, 0.0 ] );
107107
*
@@ -118,15 +118,14 @@ function complex( x, value ) {
118118
if ( !isComplexLike( value ) ) {
119119
return 0;
120120
}
121-
122121
re = real( value );
123122
im = imag( value );
124123

125124
view = reinterpret( x, 0 );
126125

127126
n = 0;
128127
for ( i = 0; i < view.length; i += 2 ) {
129-
if ( isSameValue( view[ i ], re ) && isSameValue( view[ i + 1 ], im ) ) {
128+
if ( isSameValue( view[ i ], re ) && isSameValue( view[ i+1 ], im ) ) {
130129
n += 1;
131130
}
132131
}
@@ -137,11 +136,11 @@ function complex( x, value ) {
137136
// MAIN //
138137

139138
/**
140-
* Counts the number of elements that are equal to a given value in an array.
139+
* Counts the number of elements in an array that are equal to a specified value.
141140
*
142141
* @param {Collection} x - input array
143-
* @param {*} value - given value
144-
* @returns {NonNegativeInteger} number of elements that are equal to the given value
142+
* @param {*} value - search value
143+
* @returns {NonNegativeInteger} number of elements that are equal to a specified value
145144
*
146145
* @example
147146
* var x = [ 0, 1, 0, 1, 1 ];

‎base/count-same-value/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/array/base/count-same-value",
33
"version": "0.0.0",
4-
"description": "Count the number of elements that are equal to a given value in an array.",
4+
"description": "Count the number of elements in an array that are equal to a specified value.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",
@@ -60,6 +60,7 @@
6060
"summation",
6161
"countif",
6262
"total",
63-
"same"
63+
"same",
64+
"equal"
6465
]
6566
}

‎base/count-same-value/test/test.js

+19-4
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,15 @@ tape( 'the function distinguishes between positive and negative zeros (generic)'
5656
var x;
5757

5858
x = [ 0.0, -0.0, 0.0, -0.0, 0.0, NaN, 1.0 ];
59+
5960
expected = 3;
6061
actual = countSameValue( x, 0.0 );
62+
t.strictEqual( actual, expected, 'returns expected value' );
6163

64+
expected = 2;
65+
actual = countSameValue( x, -0.0 );
6266
t.strictEqual( actual, expected, 'returns expected value' );
67+
6368
t.end();
6469
});
6570

@@ -68,7 +73,7 @@ tape( 'the function considers all NaN values to be identical (generic)', functio
6873
var actual;
6974
var x;
7075

71-
x = [ NaN, 0, NaN, 2, NaN, 9, NaN ];
76+
x = [ NaN, 0.0, NaN, 2.0, NaN, 9.0, NaN ];
7277
expected = 4;
7378
actual = countSameValue( x, NaN );
7479

@@ -95,10 +100,15 @@ tape( 'the function distinguishes between positive and negative zeros (accessors
95100
var x;
96101

97102
x = toAccessorArray( [ 0.0, -0.0, 0.0, -0.0, 0.0, NaN, 1.0 ] );
103+
98104
expected = 3;
99105
actual = countSameValue( x, 0.0 );
106+
t.strictEqual( actual, expected, 'returns expected value' );
100107

108+
expected = 2;
109+
actual = countSameValue( x, -0.0 );
101110
t.strictEqual( actual, expected, 'returns expected value' );
111+
102112
t.end();
103113
});
104114

@@ -107,7 +117,7 @@ tape( 'the function considers all NaN values to be identical (accessors)', funct
107117
var actual;
108118
var x;
109119

110-
x = toAccessorArray( [ NaN, 0, NaN, 2, NaN, 9, NaN ] );
120+
x = toAccessorArray( [ NaN, 0.0, NaN, 2.0, NaN, 9.0, NaN ] );
111121
expected = 4;
112122
actual = countSameValue( x, NaN );
113123

@@ -134,10 +144,15 @@ tape( 'the function distinguishes between positive and negative zeros (real type
134144
var x;
135145

136146
x = new Float32Array( [ 0.0, -0.0, 0.0, -0.0, 0.0, NaN, 1.0 ] );
147+
137148
expected = 3;
138149
actual = countSameValue( x, 0.0 );
150+
t.strictEqual( actual, expected, 'returns expected value' );
139151

152+
expected = 2;
153+
actual = countSameValue( x, -0.0 );
140154
t.strictEqual( actual, expected, 'returns expected value' );
155+
141156
t.end();
142157
});
143158

@@ -146,7 +161,7 @@ tape( 'the function considers all NaN values to be identical (real typed array)'
146161
var actual;
147162
var x;
148163

149-
x = new Float32Array( [ NaN, 0, NaN, 2, NaN, 9, NaN ] );
164+
x = new Float32Array( [ NaN, 0.0, NaN, 2.0, NaN, 9.0, NaN ] );
150165
expected = 4;
151166
actual = countSameValue( x, NaN );
152167

@@ -172,7 +187,7 @@ tape( 'the function distinguishes between positive and negative zeros (complex t
172187
var actual;
173188
var x;
174189

175-
x = new Complex128Array( [ 0.0, -0.0, 0.0, -0.0, 0.0, 0.0, -0.0, -0.0, -0.0, 0.0 ] );
190+
x = new Complex128Array( [ 0.0, -0.0, 0.0, -0.0, 0.0, 0.0, -0.0, -0.0, -0.0, 0.0 ] ); // eslint-disable-line max-len
176191
expected = 2;
177192
actual = countSameValue( x, new Complex128( 0.0, -0.0 ) );
178193

‎base/lib/index.js

+9
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,15 @@ setReadOnly( ns, 'copyIndexed', require( './../../base/copy-indexed' ) );
432432
*/
433433
setReadOnly( ns, 'countFalsy', require( './../../base/count-falsy' ) );
434434

435+
/**
436+
* @name countSameValue
437+
* @memberof ns
438+
* @readonly
439+
* @type {Function}
440+
* @see {@link module:@stdlib/array/base/count-same-value}
441+
*/
442+
setReadOnly( ns, 'countSameValue', require( './../../base/count-same-value' ) );
443+
435444
/**
436445
* @name countTruthy
437446
* @memberof ns

‎mskreject/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,12 @@ console.log( y );
9595

9696
<section class="related">
9797

98+
* * *
99+
100+
## See Also
101+
102+
- <span class="package-name">[`@stdlib/array/mskfilter`][@stdlib/array/mskfilter]</span><span class="delimiter">: </span><span class="description">apply a mask to a provided input array.</span>
103+
98104
</section>
99105

100106
<!-- /.related -->
@@ -105,6 +111,12 @@ console.log( y );
105111

106112
[@stdlib/array/dtypes]: https://github.com/stdlib-js/array/tree/main/dtypes
107113

114+
<!-- <related-links> -->
115+
116+
[@stdlib/array/mskfilter]: https://github.com/stdlib-js/array/tree/main/mskfilter
117+
118+
<!-- </related-links> -->
119+
108120
</section>
109121

110122
<!-- /.links -->

‎safe-casts/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ for ( i = 0; i < DTYPES.length; i++ ) {
128128
- <span class="package-name">[`@stdlib/array/convert`][@stdlib/array/convert]</span><span class="delimiter">: </span><span class="description">convert an array to an array of a different data type.</span>
129129
- <span class="package-name">[`@stdlib/array/convert-same`][@stdlib/array/convert-same]</span><span class="delimiter">: </span><span class="description">convert an array to the same data type as a second input array.</span>
130130
- <span class="package-name">[`@stdlib/array/dtypes`][@stdlib/array/dtypes]</span><span class="delimiter">: </span><span class="description">list of array data types.</span>
131+
- <span class="package-name">[`@stdlib/array/mostly-safe-casts`][@stdlib/array/mostly-safe-casts]</span><span class="delimiter">: </span><span class="description">return a list of array data types to which a provided array data type can be safely cast and, for floating-point data types, can be downcast.</span>
131132
- <span class="package-name">[`@stdlib/array/same-kind-casts`][@stdlib/array/same-kind-casts]</span><span class="delimiter">: </span><span class="description">return a list of array data types to which a provided array data type can be safely cast or cast within the same kind.</span>
132133
- <span class="package-name">[`@stdlib/ndarray/safe-casts`][@stdlib/ndarray/safe-casts]</span><span class="delimiter">: </span><span class="description">return a list of ndarray data types to which a provided ndarray data type can be safely cast.</span>
133134

@@ -147,6 +148,8 @@ for ( i = 0; i < DTYPES.length; i++ ) {
147148

148149
[@stdlib/array/convert-same]: https://github.com/stdlib-js/array/tree/main/convert-same
149150

151+
[@stdlib/array/mostly-safe-casts]: https://github.com/stdlib-js/array/tree/main/mostly-safe-casts
152+
150153
[@stdlib/array/same-kind-casts]: https://github.com/stdlib-js/array/tree/main/same-kind-casts
151154

152155
[@stdlib/ndarray/safe-casts]: https://github.com/stdlib-js/ndarray-safe-casts

0 commit comments

Comments
 (0)
Please sign in to comment.