@stdlib/math-iter-special-expm1 0.0.2 → 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 +46 -4
- package/package.json +3 -3
- package/CHANGELOG.md +0 -5
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# iterExpm1
|
|
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
|
> Create an [iterator][mdn-iterator-protocol] which computes [`exp(x) - 1`][@stdlib/math/base/special/expm1] for each iterated value.
|
|
26
26
|
|
|
@@ -137,6 +137,22 @@ while ( true ) {
|
|
|
137
137
|
|
|
138
138
|
<!-- /.references -->
|
|
139
139
|
|
|
140
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
141
|
+
|
|
142
|
+
<section class="related">
|
|
143
|
+
|
|
144
|
+
* * *
|
|
145
|
+
|
|
146
|
+
## See Also
|
|
147
|
+
|
|
148
|
+
- <span class="package-name">[`@stdlib/math/base/special/expm1`][@stdlib/math/base/special/expm1]</span><span class="delimiter">: </span><span class="description">compute exp(x) - 1.</span>
|
|
149
|
+
- <span class="package-name">[`@stdlib/math/iter/special/exp`][@stdlib/math/iter/special/exp]</span><span class="delimiter">: </span><span class="description">create an iterator which evaluates the natural exponential function for each iterated value.</span>
|
|
150
|
+
- <span class="package-name">[`@stdlib/math/iter/special/expm1rel`][@stdlib/math/iter/special/expm1rel]</span><span class="delimiter">: </span><span class="description">create an iterator which evaluates the relative error exponential for each iterated value.</span>
|
|
151
|
+
|
|
152
|
+
</section>
|
|
153
|
+
|
|
154
|
+
<!-- /.related -->
|
|
155
|
+
|
|
140
156
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
141
157
|
|
|
142
158
|
|
|
@@ -150,6 +166,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and
|
|
|
150
166
|
|
|
151
167
|
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].
|
|
152
168
|
|
|
169
|
+
#### Community
|
|
170
|
+
|
|
171
|
+
[![Chat][chat-image]][chat-url]
|
|
172
|
+
|
|
153
173
|
---
|
|
154
174
|
|
|
155
175
|
## License
|
|
@@ -159,7 +179,7 @@ See [LICENSE][stdlib-license].
|
|
|
159
179
|
|
|
160
180
|
## Copyright
|
|
161
181
|
|
|
162
|
-
Copyright © 2016-
|
|
182
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
163
183
|
|
|
164
184
|
</section>
|
|
165
185
|
|
|
@@ -178,9 +198,23 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
178
198
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-iter-special-expm1/main.svg
|
|
179
199
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-iter-special-expm1?branch=main
|
|
180
200
|
|
|
181
|
-
|
|
201
|
+
<!--
|
|
202
|
+
|
|
203
|
+
[dependencies-image]: https://img.shields.io/david/stdlib-js/math-iter-special-expm1.svg
|
|
182
204
|
[dependencies-url]: https://david-dm.org/stdlib-js/math-iter-special-expm1/main
|
|
183
205
|
|
|
206
|
+
-->
|
|
207
|
+
|
|
208
|
+
[umd]: https://github.com/umdjs/umd
|
|
209
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
210
|
+
|
|
211
|
+
[deno-url]: https://github.com/stdlib-js/math-iter-special-expm1/tree/deno
|
|
212
|
+
[umd-url]: https://github.com/stdlib-js/math-iter-special-expm1/tree/umd
|
|
213
|
+
[esm-url]: https://github.com/stdlib-js/math-iter-special-expm1/tree/esm
|
|
214
|
+
|
|
215
|
+
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
216
|
+
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
217
|
+
|
|
184
218
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
185
219
|
|
|
186
220
|
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
@@ -189,7 +223,15 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
189
223
|
|
|
190
224
|
[mdn-iterator-protocol]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterator_protocol
|
|
191
225
|
|
|
192
|
-
|
|
226
|
+
<!-- <related-links> -->
|
|
227
|
+
|
|
228
|
+
[@stdlib/math/base/special/expm1]: https://www.npmjs.com/package/@stdlib/math-base-special-expm1
|
|
229
|
+
|
|
230
|
+
[@stdlib/math/iter/special/exp]: https://www.npmjs.com/package/@stdlib/math-iter-special-exp
|
|
231
|
+
|
|
232
|
+
[@stdlib/math/iter/special/expm1rel]: https://www.npmjs.com/package/@stdlib/math-iter-special-expm1rel
|
|
233
|
+
|
|
234
|
+
<!-- </related-links> -->
|
|
193
235
|
|
|
194
236
|
</section>
|
|
195
237
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/math-iter-special-expm1",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Create an iterator which computes `exp(x) - 1` for each iterated value.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"examples": "make examples",
|
|
29
29
|
"benchmark": "make benchmark"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://
|
|
31
|
+
"homepage": "https://stdlib.io",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
34
|
"url": "git://github.com/stdlib-js/math-iter-special-expm1.git"
|
|
@@ -42,10 +42,10 @@
|
|
|
42
42
|
"@stdlib/types": "^0.0.x"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
+
"@stdlib/array-to-iterator": "^0.0.x",
|
|
45
46
|
"@stdlib/assert-is-iterator-like": "^0.0.x",
|
|
46
47
|
"@stdlib/bench": "^0.0.x",
|
|
47
48
|
"@stdlib/math-base-assert-is-nan": "^0.0.x",
|
|
48
|
-
"@stdlib/random-base-uniform": "^0.0.x",
|
|
49
49
|
"@stdlib/random-iter-uniform": "^0.0.x",
|
|
50
50
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
51
51
|
"istanbul": "^0.4.1",
|