Updated 9 months ago

lapack-base-dge-trans • Science 44%

Convert input general matrix from row-major to column-major layout or vice versa.

Updated 10 months ago

stats-strided-dmeanstdevpn • Science 57%

Calculate the mean and standard deviation of a double-precision floating-point strided array using a two-pass algorithm.

Updated 10 months ago

@stdlib/ndarray-slice-dimension-to • Science 44%

Return a read-only truncated view of an input ndarray along a specific dimension.

Updated 10 months ago

stats-strided-dsnanmeanwd • Science 57%

Calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values, using Welford's algorithm with extended accumulation, and returning an extended precision result.

Updated 10 months ago

blas-base-wasm-sdsdot • Science 44%

Calculate the dot product of two single-precision floating-point vectors with extended accumulation.

Updated 10 months ago

@stdlib/ndarray-base-slice-dimension-from • Science 44%

Return a shifted view of an input ndarray along a specific dimension.

Updated 10 months ago

stats-array-nanvariancetk • Science 57%

Calculate the variance of an array ignoring `NaN` values and using a one-pass textbook algorithm.

Updated 10 months ago

stats-strided-snanmeanwd • Science 57%

Calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using Welford's algorithm.

Updated 10 months ago

@stdlib/math-base-tools-normhermitepolyf • Science 44%

Evaluate a normalized Hermite polynomial using single-precision floating-point arithmetic.

Updated 10 months ago

stats-strided-snanmeanors • Science 44%

Calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using ordinary recursive summation.

Updated 10 months ago

stats-strided-dsnanmean • Science 44%

Calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values, using extended accumulation, and returning an extended precision result.

Updated 10 months ago

blas-ext-base-wasm • Science 44%

Extensions to basic linear algebra subprograms (BLAS) compiled to WebAssembly.

Updated 10 months ago

stats-strided-dminabs • Science 44%

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

Updated 10 months ago

stats-strided-dstdevtk • Science 57%

Calculate the standard deviation of a double-precision floating-point strided array using a one-pass textbook algorithm.

Updated 10 months ago

stats-strided-dstdevyc • Science 57%

Calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.

Updated 10 months ago

@stdlib/strided-base-reinterpret-complex • Science 44%

Reinterpret a complex-valued floating-point array as a real-valued floating-point array having the same precision.

Updated 10 months ago

@stdlib/blas-base-layout-resolve-str • Science 44%

Return the layout string associated with a supported BLAS memory layout value.

Updated 10 months ago

stats-strided-smediansorted • Science 44%

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

Updated 10 months ago

stats-strided-smeanwd • Science 57%

Calculate the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm.

Updated 9 months ago

string-base-slice-grapheme-clusters • Science 44%

Slice a string based on grapheme cluster (i.e., user-perceived character) indices.

Updated 10 months ago

@stdlib/blas-base-shared • Science 44%

Common symbols and type definitions shared across base BLAS APIs.

Updated 10 months ago

number-float64-base-add • Science 44%

Compute the sum of two double-precision floating-point numbers.

Updated 10 months ago

stats-base-ndarray-dcumin • Science 26%

Efficiently perform statistical operations on ndarray data structures with stats-base-ndarray-dcumin. Enhance your numerical computations in JavaScript. 🚀📊

Updated 10 months ago

array-base-unary5d-by • Science 44%

Apply a unary function to each element retrieved from a five-dimensional nested input array according to a callback function and assign results to elements in a five-dimensional nested output array.

Updated 10 months ago

blas-ext-base-ndarray-dcusum • Science 44%

Compute the cumulative sum of a one-dimensional double-precision floating-point ndarray.

Updated 10 months ago

ndarray-base-slice-assign • Science 44%

Assign element values from a broadcasted input ndarray to corresponding elements in an output ndarray view.

Updated 10 months ago

stats-strided-dnanvariancewd • Science 57%

Calculate the variance of a double-precision floating-point strided array ignoring NaN values and using Welford's algorithm.

Updated 10 months ago

stats-strided-nanminabs • Science 44%

Calculate the minimum absolute value of a strided array, ignoring NaN values.

Updated 10 months ago

stats-strided-snanminabs • Science 44%

Calculate the minimum absolute value of a single-precision floating-point strided array, ignoring NaN values.

Updated 10 months ago

stats-strided-snanmax • Science 44%

Calculate the maximum value of a single-precision floating-point strided array, ignoring NaN values.

Updated 10 months ago

text-normalizer • Science 44%

Text normalizer for obtaining a Unicode Normalization Form for URL creation

Updated 10 months ago

stats-array-nanstdevch • Science 44%

Calculate the standard deviation of an array ignoring `NaN` values and using a one-pass trial mean algorithm.

Updated 10 months ago

open-sri • Science 44%

Ultralight, non-dependent and minimalist open-source package to recursively generate subresource integrity (SRI) hashes.

Updated 10 months ago

@stdlib/math-base-special-truncsd • Science 44%

Round a numeric value to the nearest number toward zero with N significant figures.

Updated 9 months ago

stats-strided-dvarmpn • Science 57%

Calculate the variance of a double-precision floating-point strided array provided a known mean and using Neely's correction algorithm.

Updated 10 months ago

@stdlib/iter-counter • Science 44%

Create an iterator which iteratively returns the number of iterated values.

Updated 10 months ago

constants-float32-sqrt-pi • Science 44%

Square root of the mathematical constant π as a single-precision floating-point number.

Updated 10 months ago

@stdlib/napi-argv-strided-uint8array • Science 44%

Convert a Node-API value representing a strided array to an unsigned 8-bit integer array.

Updated 10 months ago

array-base-assert-has-almost-equal-values • Science 44%

Test if two arrays have respective elements which are approximately equal within a specified number of ULPs (units in the last place).

Updated 10 months ago

@stdlib/blas-base-matrix-triangle-enum2str • Science 44%

Return the BLAS matrix triangle string associated with a BLAS matrix triangle enumeration constant.

Updated 10 months ago

stats-strided-dnanvariance • Science 44%

Calculate the variance of a double-precision floating-point strided array ignoring NaN values.

Updated 10 months ago

constants-float32-max-nth-factorial • Science 44%

Maximum nth factorial when stored in single-precision floating-point format.

Updated 10 months ago

@stdlib/array-base-quaternary2d • Science 44%

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

Updated 10 months ago

stats-strided-varianceyc • Science 57%

Calculate the variance of a strided array using a one-pass algorithm proposed by Youngs and Cramer.

Updated 10 months ago

@stdlib/random-array-gumbel • Science 44%

Create an array containing pseudorandom numbers drawn from a Gumbel distribution.

Updated 10 months ago

stats-strided-sstdevch • Science 57%

Calculate the standard deviation of a single-precision floating-point strided array using a one-pass trial mean algorithm.

Updated 9 months ago

https://github.com/aveek-saha/mean-todo-app • Science 13%

A checklist style todo app made using the MEAN stack. The tasks sync seamlessly across multiple instances of the application

Updated 9 months ago

stats-strided-dstdevpn • Science 57%

Calculate the standard deviation of a double-precision floating-point strided array using a two-pass algorithm.

Updated 10 months ago

stats-strided-smeanpw • Science 57%

Calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation.

Updated 10 months ago

stats-strided-sdsmean • Science 44%

Calculate the arithmetic mean of a single-precision floating-point strided array using extended accumulation.

Updated 10 months ago

ndarray-base-every-by • Science 44%

Test whether all elements in an ndarray pass a test implemented by a predicate function.

Updated 10 months ago

math-base-special-sech • Science 26%

Math Base Special Sech provides efficient mathematical functions for numerical computation in JavaScript. Enhance your projects with reliable and precise calculations! 🚀📊

Updated 10 months ago

blas-ext-base-glast-index-of • Science 26%

Explore the blas-ext-base-glast-index-of repository for efficient numerical computations in JavaScript and C. Join us in enhancing web-based scientific tools! 🚀💻

Updated 10 months ago

math-base-special-coversinf • Science 44%

Compute the coversed sine of a single-precision floating-point number (in radians).

Updated 10 months ago

@stdlib/utils-some-own-by • Science 44%

Test whether some `own` properties of a provided object satisfy a predicate function for at least `n` properties.

Updated 10 months ago

blas-ext-base-ndarray-glast-index-of • Science 26%

Efficiently find the index of values in ndarrays with blas-ext-base-ndarray-glast-index-of. Ideal for numerical computations in JavaScript. 🐙💻

Updated 10 months ago

@stdlib/array-base-map4d • Science 44%

Apply a function to elements in a four-dimensional nested input array and assign results to elements in a new four-dimensional nested output array.

Updated 10 months ago

stats-strided-nanmin-by • Science 44%

Calculate the minimum value of a strided array via a callback function, ignoring NaN values.

Updated 10 months ago

wacline • Science 26%

WacLine is a software product line that allows configuration and derivation of web annotation browser extensions for specific domains using pure::variants

Updated 10 months ago

@stdlib/napi-argv-uint16array • Science 44%

Convert a Node-API value to an unsigned 16-bit integer array.

Updated 10 months ago

array-mostly-safe-casts • Science 44%

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.

Updated 10 months ago

ndarray-base-min-unsigned-integer-dtype • Science 44%

Determine the minimum ndarray data type for storing a provided unsigned integer value.

Updated 10 months ago

array-base-cuevery-by • Science 44%

Cumulatively test whether every array element in a provided array passes a test implemented by a predicate function.

Updated 10 months ago

@stdlib/array-base-unary4d • Science 44%

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

Updated 10 months ago

napi-argv-dataview • Science 44%

Convert a Node-API value corresponding to a DataView to an array of bytes (i.e., an unsigned 8-bit integer array).

Updated 10 months ago

constants-float64-max-nth-double-factorial • Science 44%

Maximum nth double factorial when stored in double-precision floating-point format.