Updated 10 months ago

@stdlib/utils-map-right • Rank 2.8 • Science 44%

Apply a function to each element in an array and assign the result to an element in an output array, iterating from right to left.

Updated 10 months ago

@stdlib/iter-mapn • Rank 2.8 • Science 44%

Create an iterator which transforms iterated values from two or more iterators by applying the iterated values as arguments to a provided function.

Updated 10 months ago

@stdlib/array-base-binary4d • Rank 2.8 • Science 44%

Apply a binary callback to elements in four-dimensional nested input arrays and assign results to elements in a four-dimensional nested output array.

Updated 10 months ago

@stdlib/utils-map-arguments • Rank 2.8 • Science 44%

Create a function that applies arguments to a provided function after transforming arguments according to a callback function.

Updated 10 months ago

@stdlib/iter-every-by • Rank 2.8 • Science 44%

Test whether every iterated value passes a test implemented by a predicate function.

Updated 10 months ago

@stdlib/math-iter-special-signum • Rank 2.8 • Science 44%

Create an iterator which evaluates the signum function for each iterated value.

Updated 10 months ago

@stdlib/math-iter-special-erfinv • Rank 2.8 • Science 44%

Create an iterator which evaluates the inverse error function for each iterated value.

Updated 10 months ago

@stdlib/strided-napi • Rank 2.8 • Science 44%

C APIs for creating N-API strided array native add-ons.

Updated 10 months ago

@stdlib/math-base-special-cabs2f • Rank 2.8 • Science 44%

Compute the squared absolute value of a single-precision complex floating-point number.

Updated 10 months ago

@stdlib/array-promotion-rules • Rank 2.8 • Science 44%

Return the array data type with the smallest size and closest kind to which array data types can be safely cast.

Updated 10 months ago

@stdlib/iter-push • Rank 2.8 • Science 44%

Create an iterator which appends additional values to the end of a provided iterator.

Updated 10 months ago

@stdlib/utils-try-then • Rank 2.7 • Science 44%

If a function does not throw, return the function return value; otherwise, return the return value of a second function.

Updated 10 months ago

@stdlib/random-streams-randu • Rank 2.7 • Science 44%

Create a readable stream for generating uniformly distributed pseudorandom numbers between 0 and 1.

Updated 10 months ago

@stdlib/utils-omit-by • Rank 2.7 • Science 44%

Return a partial object copy excluding properties for which a predicate (function) returns a truthy value.

Updated 10 months ago

@stdlib/math-iter-ops-subtract • Rank 2.7 • Science 44%

Create an iterator which performs element-wise subtraction of two or more iterators.

Updated 10 months ago

@stdlib/ndarray-iter-column-entries • Rank 2.7 • Science 44%

Create an iterator which returns [index, column] pairs for each column in a matrix (or stack of matrices).

Updated 10 months ago

@stdlib/utils-key-by-right • Rank 2.7 • Science 44%

Convert a collection to an object whose keys are determined by a provided function and whose values are the collection values, iterating from right to left.

Updated 10 months ago

@stdlib/string-substring-after-last • Rank 2.7 • Science 44%

Return the part of a string after the last occurrence of a specified substring.

Updated 10 months ago

@stdlib/utils-nonindex-keys • Rank 2.7 • Science 44%

Return an array of an object's own enumerable property names which are not integer indices.

Updated 10 months ago

@stdlib/ndarray-iter-row-entries • Rank 2.7 • Science 44%

Create an iterator which returns [index, row] pairs for each row in a matrix (or stack of matrices).

Updated 10 months ago

@stdlib/math-strided-special-sqrt-by • Rank 2.7 • Science 44%

Compute the principal square root for each element retrieved from an input strided array via a callback function.

Updated 10 months ago

@stdlib/random-iter-geometric • Rank 2.6 • Science 44%

Create an iterator for generating pseudorandom numbers drawn from a geometric distribution.

Updated 10 months ago

@stdlib/math-strided-special-sin-by • Rank 2.6 • Science 44%

Compute the sine of each element retrieved from an input strided array via a callback function.

Updated 10 months ago

random-streams-chisquare • Rank 2.6 • Science 44%

Create a readable stream for generating pseudorandom numbers drawn from a chi-square distribution.

Updated 10 months ago

@stdlib/array-base-broadcasted-unary5d • Rank 2.6 • Science 44%

Apply a unary callback to elements in a broadcasted nested input array and assign results to elements in a five-dimensional nested output array.

Updated 10 months ago

@stdlib/stats-base-smaxabssorted • Rank 2.6 • Science 44%

Calculate the maximum absolute value of a sorted single-precision floating-point strided array.

Updated 10 months ago

@stdlib/iter-reject • Rank 2.6 • Science 44%

Create an iterator which rejects the values of another iterator according to a predicate function.

Updated 10 months ago

@stdlib/utils-any-by • Rank 2.6 • Science 44%

Test whether at least one element in a collection passes a test implemented by a predicate function.

Updated 10 months ago

@stdlib/strided-napi-mskunary • Rank 2.6 • Science 44%

C API for registering an N-API module exporting a strided array interface for applying a unary callback to an input strided array according to a mask strided array.

Updated 10 months ago

@stdlib/ndarray-iter-entries • Rank 2.6 • Science 44%

Create an iterator which returns [index, value] pairs for each element in a provided ndarray.

Updated 10 months ago

@stdlib/utils-any-by-right • Rank 2.6 • Science 44%

Test whether at least one element in a collection passes a test implemented by a predicate function, iterating from right to left.

Updated 10 months ago

@stdlib/array-base-unitspace • Rank 2.6 • Science 44%

Generate a linearly spaced numeric array whose elements increment by 1.

Updated 10 months ago

@stdlib/array-base-every-by-right • Rank 2.6 • Science 44%

Test whether all elements in an array pass a test implemented by a predicate function, iterating from right to left.

Updated 10 months ago

@stdlib/utils-real-max • Rank 2.6 • Science 44%

Return the maximum finite value capable of being represented by a numeric real type.

Updated 10 months ago

@stdlib/random-streams-triangular • Rank 2.6 • Science 44%

Create a readable stream for generating pseudorandom numbers drawn from a triangular distribution.

Updated 10 months ago

@stdlib/stats-base-dmaxabs • Rank 2.6 • Science 44%

Calculate the maximum absolute value of a double-precision floating-point strided array.

Updated 10 months ago

@stdlib/utils-reject-arguments • Rank 2.6 • Science 44%

Create a function that invokes a provided function according to a predicate function.

Updated 10 months ago

@stdlib/math-strided-special-smskdeg2rad • Rank 2.6 • Science 44%

Convert each element in a single-precision floating-point strided array from degrees to radians according to a strided mask array.

Updated 10 months ago

@stdlib/utils-nonenumerable-properties-in • Rank 2.6 • Science 44%

Return an array of an object's own and inherited non-enumerable property names and symbols.

Updated 10 months ago

@stdlib/array-base-quinary5d • Rank 2.6 • Science 44%

Apply a quinary callback to elements in five five-dimensional nested input arrays and assign results to elements in a five-dimensional nested output array.