@stdlib/math-special 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +25 -4
- package/docs/types/index.d.ts +1 -1
- package/package.json +5 -5
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,9 +20,9 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# Special Functions
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
|
-
>
|
|
25
|
+
> Special math functions.
|
|
26
26
|
|
|
27
27
|
<section class="installation">
|
|
28
28
|
|
|
@@ -44,7 +44,7 @@ var ns = require( '@stdlib/math-special' );
|
|
|
44
44
|
|
|
45
45
|
#### ns
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
Namespace containing special math functions.
|
|
48
48
|
|
|
49
49
|
```javascript
|
|
50
50
|
var o = ns;
|
|
@@ -118,6 +118,16 @@ console.log( objectKeys( ns ) );
|
|
|
118
118
|
|
|
119
119
|
<!-- /.examples -->
|
|
120
120
|
|
|
121
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
122
|
+
|
|
123
|
+
<section class="related">
|
|
124
|
+
|
|
125
|
+
</section>
|
|
126
|
+
|
|
127
|
+
<!-- /.related -->
|
|
128
|
+
|
|
129
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
130
|
+
|
|
121
131
|
|
|
122
132
|
<section class="main-repo" >
|
|
123
133
|
|
|
@@ -142,7 +152,7 @@ See [LICENSE][stdlib-license].
|
|
|
142
152
|
|
|
143
153
|
## Copyright
|
|
144
154
|
|
|
145
|
-
Copyright © 2016-
|
|
155
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
146
156
|
|
|
147
157
|
</section>
|
|
148
158
|
|
|
@@ -161,9 +171,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
161
171
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-special/main.svg
|
|
162
172
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-special?branch=main
|
|
163
173
|
|
|
174
|
+
<!--
|
|
175
|
+
|
|
164
176
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/math-special.svg
|
|
165
177
|
[dependencies-url]: https://david-dm.org/stdlib-js/math-special/main
|
|
166
178
|
|
|
179
|
+
-->
|
|
180
|
+
|
|
181
|
+
[umd]: https://github.com/umdjs/umd
|
|
182
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
183
|
+
|
|
184
|
+
[deno-url]: https://github.com/stdlib-js/math-special/tree/deno
|
|
185
|
+
[umd-url]: https://github.com/stdlib-js/math-special/tree/umd
|
|
186
|
+
[esm-url]: https://github.com/stdlib-js/math-special/tree/esm
|
|
187
|
+
|
|
167
188
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
168
189
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
169
190
|
|
package/docs/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/math-special",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.6",
|
|
4
|
+
"description": "Special math functions.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "The Stdlib Authors",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"@stdlib/assert-is-browser": "^0.0.x",
|
|
47
47
|
"@stdlib/assert-is-typed-array-like": "^0.0.x",
|
|
48
48
|
"@stdlib/bench": "^0.0.x",
|
|
49
|
+
"@stdlib/fs-write-file": "^0.0.x",
|
|
49
50
|
"@stdlib/math-base-assert-is-nan": "^0.0.x",
|
|
50
51
|
"@stdlib/math-base-special-abs": "^0.0.x",
|
|
51
52
|
"@stdlib/math-base-special-absf": "^0.0.x",
|
|
@@ -57,16 +58,15 @@
|
|
|
57
58
|
"@stdlib/ndarray-array": "^0.0.x",
|
|
58
59
|
"@stdlib/ndarray-base-ctor": "^0.0.x",
|
|
59
60
|
"@stdlib/ndarray-base-dtypes2signatures": "^0.0.x",
|
|
61
|
+
"@stdlib/ndarray-base-meta-data-props": "^0.0.x",
|
|
60
62
|
"@stdlib/ndarray-base-serialize-meta-data": "^0.0.x",
|
|
61
63
|
"@stdlib/ndarray-base-shape2strides": "^0.0.x",
|
|
62
64
|
"@stdlib/ndarray-base-unary": "^0.0.x",
|
|
63
65
|
"@stdlib/ndarray-ctor": "^0.0.x",
|
|
64
66
|
"@stdlib/ndarray-dispatch": "^0.0.x",
|
|
67
|
+
"@stdlib/ndarray-dtypes": "^0.0.x",
|
|
65
68
|
"@stdlib/ndarray-ind2sub": "^0.0.x",
|
|
66
69
|
"@stdlib/random-base-uniform": "^0.0.x",
|
|
67
|
-
"@stdlib/utils-copy": "^0.0.x",
|
|
68
|
-
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.0.x",
|
|
69
|
-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.0.x",
|
|
70
70
|
"@stdlib/utils-keys": "^0.0.x",
|
|
71
71
|
"@stdlib/utils-try-require": "^0.0.x",
|
|
72
72
|
"proxyquire": "^2.0.0",
|