@stdlib/math-strided-special

Standard library strided array special math functions.

https://github.com/stdlib-js/math-strided-special

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.5%) to scientific vocabulary

Keywords

array element-wise elementwise javascript lib library math mathematics ndarray node node-js nodejs special standard stdlib strided vector
Last synced: 6 months ago · JSON representation ·

Repository

Standard library strided array special math functions.

Basic Info
Statistics
  • Stars: 2
  • Watchers: 3
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
array element-wise elementwise javascript lib library math mathematics ndarray node node-js nodejs special standard stdlib strided vector
Created over 4 years ago · Last pushed 10 months ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation Security

README.md

About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

Special Functions

NPM version Build Status Coverage Status <!-- dependencies -->

Strided array special math functions.

## Installation ```bash npm install @stdlib/math-strided-special ``` Alternatively, - To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm`][esm-url] branch (see [README][esm-readme]). - If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions). - For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd`][umd-url] branch (see [README][umd-readme]). The [branches.md][branches-url] file summarizes the available branches and displays a diagram illustrating their relationships. To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.
## Usage ```javascript var ns = require( '@stdlib/math-strided-special' ); ``` #### ns Namespace containing strided array special math functions. ```javascript var special = ns; // returns {...} ``` The namespace contains the following strided array functions:
- [`absBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/abs-by]: compute the absolute value of each element retrieved from a strided input array via a callback function and assign each result to an element in a strided output array. - [`abs( N, dtypeX, x, strideX, dtypeY, y, strideY )`][@stdlib/math/strided/special/abs]: compute the absolute value for each element in a strided array. - [`abs2By( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/abs2-by]: compute the squared absolute value of each element retrieved from an input strided array via a callback function. - [`abs2( N, dtypeX, x, strideX, dtypeY, y, strideY )`][@stdlib/math/strided/special/abs2]: compute the squared absolute value for each element in a strided array. - [`acosBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/acos-by]: compute the arccosine of each element retrieved from an input strided array via a callback function. - [`acoshBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/acosh-by]: compute the hyperbolic arccosine of each element retrieved from an input strided array via a callback function. - [`acotBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/acot-by]: compute the inverse cotangent of each element retrieved from an input strided array via a callback function. - [`acothBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/acoth-by]: compute the inverse hyperbolic cotangent of each element retrieved from an input strided array via a callback function. - [`acovercosBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/acovercos-by]: compute the inverse coversed cosine of each element retrieved from an input strided array via a callback function. - [`acoversinBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/acoversin-by]: compute the inverse coversed sine of each element retrieved from an input strided array via a callback function. - [`ahavercosBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/ahavercos-by]: compute the inverse half-value versed cosine of each element retrieved from an input strided array via a callback function. - [`ahaversinBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/ahaversin-by]: compute the inverse half-value versed sine of each element retrieved from an input strided array via a callback function. - [`asinBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/asin-by]: compute the arcsine of each element retrieved from an input strided array via a callback function. - [`asinhBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/asinh-by]: compute the hyperbolic arcsine of each element retrieved from an input strided array via a callback function. - [`atanBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/atan-by]: compute the arctangent of each element retrieved from an input strided array via a callback function. - [`atanhBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/atanh-by]: compute the hyperbolic arctangent of each element retrieved from an input strided array via a callback function. - [`avercosBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/avercos-by]: compute the inverse versed cosine of each element retrieved from an input strided array via a callback function. - [`aversinBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/aversin-by]: compute the inverse versed sine of each element retrieved from an input strided array via a callback function. - [`besselj0By( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/besselj0-by]: compute the Bessel function of the first kind of order zero for each element retrieved from an input strided array via a callback function. - [`besselj1By( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/besselj1-by]: compute the Bessel function of the first kind of order one for each element retrieved from an input strided array via a callback function. - [`bessely0By( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/bessely0-by]: compute the Bessel function of the second kind of order zero for each element retrieved from an input strided array via a callback function. - [`bessely1By( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/bessely1-by]: compute the Bessel function of the second kind of order one for each element retrieved from an input strided array via a callback function. - [`binetBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/binet-by]: evaluate Binet's formula extended to real numbers for each element retrieved from an input strided array via a callback function. - [`cbrtBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/cbrt-by]: compute the cube root of each element retrieved from an input strided array via a callback function. - [`cbrt( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/cbrt]: compute the cube root of each element in a strided array. - [`ceil( N, dtypeX, x, strideX, dtypeY, y, strideY )`][@stdlib/math/strided/special/ceil]: round each element in a strided array toward positive infinity. - [`cosBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/cos-by]: compute the cosine for each element retrieved from an input strided array via a callback function. - [`dabs( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/dabs]: compute the absolute value for each element in a double-precision floating-point strided array. - [`dabs2( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/dabs2]: compute the squared absolute value for each element in a double-precision floating-point strided array. - [`dcbrtBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/dcbrt-by]: compute the cube root of each element retrieved from a double-precision floating-point strided array via a callback function. - [`dcbrt( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/dcbrt]: compute the cube root of each element in a double-precision floating-point strided array. - [`dceil( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/dceil]: round each element in a double-precision floating-point strided array toward positive infinity. - [`ddeg2rad( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/ddeg2rad]: convert each element in a double-precision floating-point strided array from degrees to radians. - [`deg2rad( N, dtypeX, x, strideX, dtypeY, y, strideY )`][@stdlib/math/strided/special/deg2rad]: convert each element in a strided array from degrees to radians. - [`dfloor( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/dfloor]: round each element in a double-precision floating-point strided array toward negative infinity. - [`dinv( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/dinv]: compute the multiplicative inverse for each element in a double-precision floating-point strided array. - [`dmskabs( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/dmskabs]: compute the absolute value for each element in a double-precision floating-point strided array according to a strided mask array. - [`dmskabs2( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/dmskabs2]: compute the squared absolute value for each element in a double-precision floating-point strided array according to a strided mask array. - [`dmskcbrt( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/dmskcbrt]: compute the cube root for each element in a double-precision floating-point strided array according to a strided mask array. - [`dmskceil( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/dmskceil]: round each element in a double-precision floating-point strided array toward positive infinity according to a strided mask array. - [`dmskdeg2rad( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/dmskdeg2rad]: convert each element in a double-precision floating-point strided array from degrees to radians according to a strided mask array. - [`dmskfloor( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/dmskfloor]: round each element in a double-precision floating-point strided array toward negative infinity according to a strided mask array. - [`dmskinv( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/dmskinv]: compute the multiplicative inverse for each element in a double-precision floating-point strided array according to a strided mask array. - [`dmskramp( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/dmskramp]: evaluate the ramp function for each element in a double-precision floating-point strided array according to a strided mask array. - [`dmskrsqrt( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/dmskrsqrt]: compute the reciprocal square root for each element in a double-precision floating-point strided array according to a strided mask array. - [`dmsksqrt( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/dmsksqrt]: compute the principal square root for each element in a double-precision floating-point strided array according to a strided mask array. - [`dmsktrunc( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/dmsktrunc]: round each element in a double-precision floating-point strided array toward zero according to a strided mask array. - [`dramp( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/dramp]: evaluate the ramp function for each element in a double-precision floating-point strided array. - [`drsqrt( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/drsqrt]: compute the reciprocal square root for each element in a double-precision floating-point strided array. - [`dsqrt( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/dsqrt]: compute the principal square root for each element in a double-precision floating-point strided array. - [`dtrunc( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/dtrunc]: round each element in a double-precision floating-point strided array toward zero. - [`floor( N, dtypeX, x, strideX, dtypeY, y, strideY )`][@stdlib/math/strided/special/floor]: round each element in a strided array toward negative infinity. - [`inv( N, dtypeX, x, strideX, dtypeY, y, strideY )`][@stdlib/math/strided/special/inv]: compute the multiplicative inverse for each element in a strided array. - [`ramp( N, dtypeX, x, strideX, dtypeY, y, strideY )`][@stdlib/math/strided/special/ramp]: evaluate the ramp function for each element in a strided array. - [`rsqrt( N, dtypeX, x, strideX, dtypeY, y, strideY )`][@stdlib/math/strided/special/rsqrt]: compute the reciprocal square root for each element in a strided array. - [`sabs( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/sabs]: compute the absolute value for each element in a single-precision floating-point strided array. - [`sabs2( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/sabs2]: compute the squared absolute value for each element in a single-precision floating-point strided array. - [`scbrt( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/scbrt]: compute the cube root of each element in a single-precision floating-point strided array. - [`sceil( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/sceil]: round each element in a single-precision floating-point strided array toward positive infinity. - [`sdeg2rad( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/sdeg2rad]: convert each element in a single-precision floating-point strided array from degrees to radians. - [`sfloor( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/sfloor]: round each element in a single-precision floating-point strided array toward negative infinity. - [`sinBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/sin-by]: compute the sine of each element retrieved from an input strided array via a callback function. - [`sinv( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/sinv]: compute the multiplicative inverse for each element in a single-precision floating-point strided array. - [`smskabs( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/smskabs]: compute the absolute value for each element in a single-precision floating-point strided array according to a strided mask array. - [`smskabs2( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/smskabs2]: compute the squared absolute value for each element in a single-precision floating-point strided array according to a strided mask array. - [`smskcbrt( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/smskcbrt]: compute the cube root for each element in a single-precision floating-point strided array according to a strided mask array. - [`smskceil( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/smskceil]: round each element in a single-precision floating-point strided array toward positive infinity according to a strided mask array. - [`smskdeg2rad( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/smskdeg2rad]: convert each element in a single-precision floating-point strided array from degrees to radians according to a strided mask array. - [`smskfloor( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/smskfloor]: round each element in a single-precision floating-point strided array toward negative infinity according to a strided mask array. - [`smskinv( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/smskinv]: compute the multiplicative inverse for each element in a single-precision floating-point strided array according to a strided mask array. - [`smskramp( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/smskramp]: evaluate the ramp function for each element in a single-precision floating-point strided array according to a strided mask array. - [`smskrsqrt( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/smskrsqrt]: compute the reciprocal square root for each element in a single-precision floating-point strided array according to a strided mask array. - [`smsksqrt( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/smsksqrt]: compute the principal square root for each element in a single-precision floating-point strided array according to a strided mask array. - [`smsktrunc( N, x, sx, m, sm, y, sy )`][@stdlib/math/strided/special/smsktrunc]: round each element in a single-precision floating-point strided array toward zero according to a strided mask array. - [`sqrtBy( N, x, strideX, y, strideY, clbk[, thisArg] )`][@stdlib/math/strided/special/sqrt-by]: compute the principal square root for each element retrieved from an input strided array via a callback function. - [`sqrt( N, dtypeX, x, strideX, dtypeY, y, strideY )`][@stdlib/math/strided/special/sqrt]: compute the principal square root for each element in a strided array. - [`sramp( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/sramp]: evaluate the ramp function for each element in a single-precision floating-point strided array. - [`srsqrt( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/srsqrt]: compute the reciprocal square root for each element in a single-precision floating-point strided array. - [`ssqrt( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/ssqrt]: compute the principal square root for each element in a single-precision floating-point strided array. - [`strunc( N, x, strideX, y, strideY )`][@stdlib/math/strided/special/strunc]: round each element in a single-precision floating-point strided array toward zero. - [`trunc( N, dtypeX, x, strideX, dtypeY, y, strideY )`][@stdlib/math/strided/special/trunc]: round each element in a strided array toward zero.
## Examples ```javascript var objectKeys = require( '@stdlib/utils-keys' ); var ns = require( '@stdlib/math-strided-special' ); console.log( objectKeys( ns ) ); ```
* * * ## Notice This package is part of [stdlib][stdlib], a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more. For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib]. #### Community [![Chat][chat-image]][chat-url] --- ## License See [LICENSE][stdlib-license]. ## Copyright Copyright © 2016-2025. The Stdlib [Authors][stdlib-authors].

Owner

  • Name: stdlib
  • Login: stdlib-js
  • Kind: organization

Standard library for JavaScript.

Citation (CITATION.cff)

cff-version: 1.2.0
title: stdlib
message: >-
  If you use this software, please cite it using the
  metadata from this file.

type: software

authors:
  - name: The Stdlib Authors
    url: https://github.com/stdlib-js/stdlib/graphs/contributors

repository-code: https://github.com/stdlib-js/stdlib
url: https://stdlib.io

abstract: |
  Standard library for JavaScript and Node.js.

keywords:
  - JavaScript
  - Node.js
  - TypeScript
  - standard library
  - scientific computing
  - numerical computing
  - statistical computing

license: Apache-2.0 AND BSL-1.0

date-released: 2016

GitHub Events

Total
  • Push event: 18
Last Year
  • Push event: 18

Committers

Last synced: 7 months ago

All Time
  • Total Commits: 62
  • Total Committers: 1
  • Avg Commits per committer: 62.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 7
  • Committers: 1
  • Avg Commits per committer: 7.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
stdlib-bot n****y@s****o 62
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • npm 8 last-month
  • Total dependent packages: 3
  • Total dependent repositories: 1
  • Total versions: 11
  • Total maintainers: 4
npmjs.org: @stdlib/math-strided-special

Strided array special math functions.

  • Homepage: https://stdlib.io
  • License: Apache-2.0
  • Latest release: 0.2.2
    published over 1 year ago
  • Versions: 11
  • Dependent Packages: 3
  • Dependent Repositories: 1
  • Downloads: 8 Last month
Rankings
Dependent packages count: 5.9%
Dependent repos count: 10.3%
Average: 13.7%
Stargazers count: 14.5%
Forks count: 15.4%
Downloads: 22.3%
Funding
  • type: opencollective
  • url: https://opencollective.com/stdlib
Last synced: 6 months ago

Dependencies

.github/workflows/benchmark.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/cancel.yml actions
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/close_pull_requests.yml actions
  • superbrothers/close-pull-request v3 composite
.github/workflows/examples.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/npm_downloads.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • actions/upload-artifact v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/productionize.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • stdlib-js/bundle-action main composite
  • stdlib-js/transform-errors-action main composite
.github/workflows/publish.yml actions
  • JS-DevTools/npm-publish v1 composite
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/test.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/test_bundles.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • denoland/setup-deno v1 composite
.github/workflows/test_coverage.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • codecov/codecov-action v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/test_install.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
package.json npm
  • @stdlib/array-dtypes ^0.0.x development
  • @stdlib/array-filled ^0.0.x development
  • @stdlib/array-filled-by ^0.0.x development
  • @stdlib/array-float32 ^0.0.x development
  • @stdlib/array-float64 ^0.0.x development
  • @stdlib/array-uint8 ^0.0.x development
  • @stdlib/assert-is-browser ^0.0.x development
  • @stdlib/bench ^0.0.x development
  • @stdlib/fs-write-file ^0.0.x development
  • @stdlib/math-base-assert-is-nan ^0.0.x development
  • @stdlib/math-base-assert-is-nanf ^0.0.x development
  • @stdlib/math-base-special-abs ^0.0.x development
  • @stdlib/math-base-special-abs2 ^0.0.x development
  • @stdlib/math-base-special-abs2f ^0.0.x development
  • @stdlib/math-base-special-absf ^0.0.x development
  • @stdlib/math-base-special-acos ^0.0.x development
  • @stdlib/math-base-special-acosh ^0.0.x development
  • @stdlib/math-base-special-acot ^0.0.x development
  • @stdlib/math-base-special-acoth ^0.0.x development
  • @stdlib/math-base-special-acovercos ^0.0.x development
  • @stdlib/math-base-special-acoversin ^0.0.x development
  • @stdlib/math-base-special-ahavercos ^0.0.x development
  • @stdlib/math-base-special-ahaversin ^0.0.x development
  • @stdlib/math-base-special-asin ^0.0.x development
  • @stdlib/math-base-special-asinh ^0.0.x development
  • @stdlib/math-base-special-atan ^0.0.x development
  • @stdlib/math-base-special-atanh ^0.0.x development
  • @stdlib/math-base-special-avercos ^0.0.x development
  • @stdlib/math-base-special-aversin ^0.0.x development
  • @stdlib/math-base-special-besselj0 ^0.0.x development
  • @stdlib/math-base-special-besselj1 ^0.0.x development
  • @stdlib/math-base-special-bessely0 ^0.0.x development
  • @stdlib/math-base-special-bessely1 ^0.0.x development
  • @stdlib/math-base-special-binet ^0.0.x development
  • @stdlib/math-base-special-cbrt ^0.0.x development
  • @stdlib/math-base-special-cbrtf ^0.0.x development
  • @stdlib/math-base-special-ceil ^0.0.x development
  • @stdlib/math-base-special-ceilf ^0.0.x development
  • @stdlib/math-base-special-cos ^0.0.x development
  • @stdlib/math-base-special-deg2rad ^0.0.x development
  • @stdlib/math-base-special-deg2radf ^0.0.x development
  • @stdlib/math-base-special-floor ^0.0.x development
  • @stdlib/math-base-special-floorf ^0.0.x development
  • @stdlib/math-base-special-identity ^0.0.x development
  • @stdlib/math-base-special-inv ^0.0.x development
  • @stdlib/math-base-special-invf ^0.0.x development
  • @stdlib/math-base-special-labs ^0.0.x development
  • @stdlib/math-base-special-pow ^0.0.x development
  • @stdlib/math-base-special-ramp ^0.0.x development
  • @stdlib/math-base-special-rampf ^0.0.x development
  • @stdlib/math-base-special-round ^0.0.x development
  • @stdlib/math-base-special-rsqrt ^0.0.x development
  • @stdlib/math-base-special-rsqrtf ^0.0.x development
  • @stdlib/math-base-special-sin ^0.0.x development
  • @stdlib/math-base-special-sqrt ^0.0.x development
  • @stdlib/math-base-special-sqrtf ^0.0.x development
  • @stdlib/math-base-special-trunc ^0.0.x development
  • @stdlib/math-base-special-truncf ^0.0.x development
  • @stdlib/ndarray-base-dtypes2signatures ^0.0.x development
  • @stdlib/random-base-discrete-uniform ^0.0.x development
  • @stdlib/random-base-randu ^0.0.x development
  • @stdlib/random-base-uniform ^0.0.x development
  • @stdlib/strided-base-dmap ^0.0.x development
  • @stdlib/strided-base-dmskmap ^0.0.x development
  • @stdlib/strided-base-dtype-enum2str ^0.0.x development
  • @stdlib/strided-base-dtype-resolve-enum ^0.0.x development
  • @stdlib/strided-base-map-by ^0.0.x development
  • @stdlib/strided-base-meta-data-props ^0.0.x development
  • @stdlib/strided-base-smap ^0.0.x development
  • @stdlib/strided-base-smskmap ^0.0.x development
  • @stdlib/strided-base-unary ^0.0.x development
  • @stdlib/strided-base-unary-addon-dispatch ^0.0.x development
  • @stdlib/strided-dispatch ^0.0.x development
  • @stdlib/strided-dtypes ^0.0.x development
  • @stdlib/utils-define-nonenumerable-read-only-property ^0.0.x development
  • @stdlib/utils-keys ^0.0.x development
  • @stdlib/utils-try-require ^0.0.x development
  • istanbul ^0.4.1 development
  • proxyquire ^2.0.0 development
  • tap-min 2.x.x development
  • tape git+https://github.com/kgryte/tape.git#fix/globby development
  • @stdlib/math-strided-special-abs ^0.0.x
  • @stdlib/math-strided-special-abs-by ^0.0.x
  • @stdlib/math-strided-special-abs2 ^0.0.x
  • @stdlib/math-strided-special-abs2-by ^0.0.x
  • @stdlib/math-strided-special-acos-by ^0.0.x
  • @stdlib/math-strided-special-acosh-by ^0.0.x
  • @stdlib/math-strided-special-acot-by ^0.0.x
  • @stdlib/math-strided-special-acoth-by ^0.0.x
  • @stdlib/math-strided-special-acovercos-by ^0.0.x
  • @stdlib/math-strided-special-acoversin-by ^0.0.x
  • @stdlib/math-strided-special-ahavercos-by ^0.0.x
  • @stdlib/math-strided-special-ahaversin-by ^0.0.x
  • @stdlib/math-strided-special-asin-by ^0.0.x
  • @stdlib/math-strided-special-asinh-by ^0.0.x
  • @stdlib/math-strided-special-atan-by ^0.0.x
  • @stdlib/math-strided-special-atanh-by ^0.0.x
  • @stdlib/math-strided-special-avercos-by ^0.0.x
  • @stdlib/math-strided-special-aversin-by ^0.0.x
  • @stdlib/math-strided-special-besselj0-by ^0.0.x
  • @stdlib/math-strided-special-besselj1-by ^0.0.x
  • @stdlib/math-strided-special-bessely0-by ^0.0.x
  • @stdlib/math-strided-special-bessely1-by ^0.0.x
  • @stdlib/math-strided-special-binet-by ^0.0.x
  • @stdlib/math-strided-special-cbrt ^0.0.x
  • @stdlib/math-strided-special-cbrt-by ^0.0.x
  • @stdlib/math-strided-special-ceil ^0.0.x
  • @stdlib/math-strided-special-cos-by ^0.0.x
  • @stdlib/math-strided-special-dabs ^0.0.x
  • @stdlib/math-strided-special-dabs2 ^0.0.x
  • @stdlib/math-strided-special-dcbrt ^0.0.x
  • @stdlib/math-strided-special-dcbrt-by ^0.0.x
  • @stdlib/math-strided-special-dceil ^0.0.x
  • @stdlib/math-strided-special-ddeg2rad ^0.0.x
  • @stdlib/math-strided-special-deg2rad ^0.0.x
  • @stdlib/math-strided-special-dfloor ^0.0.x
  • @stdlib/math-strided-special-dinv ^0.0.x
  • @stdlib/math-strided-special-dmskabs ^0.0.x
  • @stdlib/math-strided-special-dmskabs2 ^0.0.x
  • @stdlib/math-strided-special-dmskcbrt ^0.0.x
  • @stdlib/math-strided-special-dmskceil ^0.0.x
  • @stdlib/math-strided-special-dmskdeg2rad ^0.0.x
  • @stdlib/math-strided-special-dmskfloor ^0.0.x
  • @stdlib/math-strided-special-dmskinv ^0.0.x
  • @stdlib/math-strided-special-dmskramp ^0.0.x
  • @stdlib/math-strided-special-dmskrsqrt ^0.0.x
  • @stdlib/math-strided-special-dmsksqrt ^0.0.x
  • @stdlib/math-strided-special-dmsktrunc ^0.0.x
  • @stdlib/math-strided-special-dramp ^0.0.x
  • @stdlib/math-strided-special-drsqrt ^0.0.x
  • @stdlib/math-strided-special-dsqrt ^0.0.x
  • @stdlib/math-strided-special-dtrunc ^0.0.x
  • @stdlib/math-strided-special-floor ^0.0.x
  • @stdlib/math-strided-special-inv ^0.0.x
  • @stdlib/math-strided-special-ramp ^0.0.x
  • @stdlib/math-strided-special-rsqrt ^0.0.x
  • @stdlib/math-strided-special-sabs ^0.0.x
  • @stdlib/math-strided-special-sabs2 ^0.0.x
  • @stdlib/math-strided-special-scbrt ^0.0.x
  • @stdlib/math-strided-special-sceil ^0.0.x
  • @stdlib/math-strided-special-sdeg2rad ^0.0.x
  • @stdlib/math-strided-special-sfloor ^0.0.x
  • @stdlib/math-strided-special-sin-by ^0.0.x
  • @stdlib/math-strided-special-sinv ^0.0.x
  • @stdlib/math-strided-special-smskabs ^0.0.x
  • @stdlib/math-strided-special-smskabs2 ^0.0.x
  • @stdlib/math-strided-special-smskcbrt ^0.0.x
  • @stdlib/math-strided-special-smskceil ^0.0.x
  • @stdlib/math-strided-special-smskdeg2rad ^0.0.x
  • @stdlib/math-strided-special-smskfloor ^0.0.x
  • @stdlib/math-strided-special-smskinv ^0.0.x
  • @stdlib/math-strided-special-smskramp ^0.0.x
  • @stdlib/math-strided-special-smskrsqrt ^0.0.x
  • @stdlib/math-strided-special-smsksqrt ^0.0.x
  • @stdlib/math-strided-special-smsktrunc ^0.0.x
  • @stdlib/math-strided-special-sqrt ^0.0.x
  • @stdlib/math-strided-special-sqrt-by ^0.0.x
  • @stdlib/math-strided-special-sramp ^0.0.x
  • @stdlib/math-strided-special-srsqrt ^0.0.x
  • @stdlib/math-strided-special-ssqrt ^0.0.x
  • @stdlib/math-strided-special-strunc ^0.0.x
  • @stdlib/math-strided-special-trunc ^0.0.x
  • @stdlib/utils-define-read-only-property ^0.0.x