stdlib icon indicating copy to clipboard operation
stdlib copied to clipboard

✨ Standard library for JavaScript and Node.js. ✨

Results 538 stdlib issues
Sort by recently updated
recently updated
newest added

### Description This RFC proposes adding native C implementation for [`stdlib/math/base/special/acsch`](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/@stdlib/math/base/special/acsch). ```c double stdlib_base_acsch( const double x ); ``` ### Related Issues None. ### Questions No. ### Other No. ###...

enhancement
rfc
math
native
good first issue

### Description This RFC proposes adding C implementation for [`@stdlib/math/base/special/asec`](https://github.com/stdlib-js/stdlib/blob/develop/lib/node_modules/%40stdlib/math/base/special/asec). ```c double stdlib_base_asec( const double x ); ``` ### Related Issues None. ### Questions No. ### Other No. ### Checklist...

enhancement
rfc
math
native
good first issue

### Description This RFC proposes adding C implementation for [`@stdlib/math/base/special/asech`](https://github.com/stdlib-js/stdlib/blob/develop/lib/node_modules/%40stdlib/math/base/special/asech/). ```c double stdlib_math_asech( const double x ); ``` ### Related Issues None. ### Questions No. ### Other No. ### Checklist...

enhancement
rfc
math
native
good first issue

### Description This RFC proposes adding support for converting a string to "sticky caps" case (also known as "studly case" or sponge case), where capitalization is random. E.g., ```javascript stickycase(...

rfc
feature
good first issue

### Description This RFC proposes adding support for non-standard specifiers for string formatting. Currently, `@stdlib/string/format` supports the standard `printf` specifiers as found in C. Would be convenient to be able...

rfc
feature

Compute the sine of x where x is in degrees. Package: `@stdlib/math/base/special/sind` Alias: `base.sind` For a reference implementation, see [this link](https://github.com/JuliaLang/julia/blob/c3f59178b1c9c2b0a9758ac4f92b3445e933e405/base/special/trig.jl#L478). **Guide:** - Read and understood the [Code of Conduct](https://github.com/stdlib-js/stdlib/blob/develop/CODE_OF_CONDUCT.md)....

duplicate

### Description This RFC proposes adding a function to calculate the Bray-Curtis distance between two strided arrays. Package: `@stdlib/math/strided/distances/braycurtis` The function should have the following signature `braycurtis( N, x, strideX,...

rfc
feature
native
good first issue

This RFC proposes adding a function to calculate the City Block (Manhattan) distance between two strided arrays. Package: `@stdlib/math/strided/distances/cityblock` The function should have the following signature `cityblock( N, x, strideX,...

rfc
feature
native
good first issue

### Description This RFC proposes adding a function to calculate the Chebyshev distance between two strided arrays. Package: `@stdlib/math/strided/distances/chebyshev` The function should have the following signature `chebyshev ( N, x,...

rfc
feature
native
good first issue

### Description This RFC proposes adding a function to calculate the Canberra distance between two strided arrays. Package: `@stdlib/math/strided/distances/canberra` The function should have the following signature `canberra( N, x, strideX,...

rfc
feature
native
good first issue