@stdlib/math-iter-special-expm1 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 +37 -2
- package/package.json +2 -2
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
|
|
|
@@ -163,7 +179,7 @@ See [LICENSE][stdlib-license].
|
|
|
163
179
|
|
|
164
180
|
## Copyright
|
|
165
181
|
|
|
166
|
-
Copyright © 2016-
|
|
182
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
167
183
|
|
|
168
184
|
</section>
|
|
169
185
|
|
|
@@ -182,9 +198,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
182
198
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-iter-special-expm1/main.svg
|
|
183
199
|
[coverage-url]: https://codecov.io/github/stdlib-js/math-iter-special-expm1?branch=main
|
|
184
200
|
|
|
201
|
+
<!--
|
|
202
|
+
|
|
185
203
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/math-iter-special-expm1.svg
|
|
186
204
|
[dependencies-url]: https://david-dm.org/stdlib-js/math-iter-special-expm1/main
|
|
187
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
|
+
|
|
188
215
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
189
216
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
190
217
|
|
|
@@ -196,8 +223,16 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
196
223
|
|
|
197
224
|
[mdn-iterator-protocol]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterator_protocol
|
|
198
225
|
|
|
226
|
+
<!-- <related-links> -->
|
|
227
|
+
|
|
199
228
|
[@stdlib/math/base/special/expm1]: https://www.npmjs.com/package/@stdlib/math-base-special-expm1
|
|
200
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> -->
|
|
235
|
+
|
|
201
236
|
</section>
|
|
202
237
|
|
|
203
238
|
<!-- /.links -->
|
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": {
|
|
@@ -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",
|