@stdlib/math-base-special-exp 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 CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2021 The Stdlib Authors.
1
+ Copyright (c) 2016-2022 The Stdlib Authors.
package/README.md CHANGED
@@ -20,7 +20,7 @@ limitations under the License.
20
20
 
21
21
  # Natural Exponential Function
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
  > Natural [exponential function][exponential-function].
26
26
 
@@ -106,6 +106,25 @@ for ( i = 0; i < 100; i++ ) {
106
106
 
107
107
  <!-- /.examples -->
108
108
 
109
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
110
+
111
+ <section class="related">
112
+
113
+ * * *
114
+
115
+ ## See Also
116
+
117
+ - <span class="package-name">[`@stdlib/math/base/special/exp10`][@stdlib/math/base/special/exp10]</span><span class="delimiter">: </span><span class="description">base 10 exponential function.</span>
118
+ - <span class="package-name">[`@stdlib/math/base/special/exp2`][@stdlib/math/base/special/exp2]</span><span class="delimiter">: </span><span class="description">base 2 exponential function.</span>
119
+ - <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>
120
+ - <span class="package-name">[`@stdlib/math/base/special/ln`][@stdlib/math/base/special/ln]</span><span class="delimiter">: </span><span class="description">natural logarithm.</span>
121
+
122
+ </section>
123
+
124
+ <!-- /.related -->
125
+
126
+ <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
127
+
109
128
 
110
129
  <section class="main-repo" >
111
130
 
@@ -130,7 +149,7 @@ See [LICENSE][stdlib-license].
130
149
 
131
150
  ## Copyright
132
151
 
133
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
152
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
134
153
 
135
154
  </section>
136
155
 
@@ -149,9 +168,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
149
168
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-special-exp/main.svg
150
169
  [coverage-url]: https://codecov.io/github/stdlib-js/math-base-special-exp?branch=main
151
170
 
171
+ <!--
172
+
152
173
  [dependencies-image]: https://img.shields.io/david/stdlib-js/math-base-special-exp.svg
153
174
  [dependencies-url]: https://david-dm.org/stdlib-js/math-base-special-exp/main
154
175
 
176
+ -->
177
+
178
+ [umd]: https://github.com/umdjs/umd
179
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
180
+
181
+ [deno-url]: https://github.com/stdlib-js/math-base-special-exp/tree/deno
182
+ [umd-url]: https://github.com/stdlib-js/math-base-special-exp/tree/umd
183
+ [esm-url]: https://github.com/stdlib-js/math-base-special-exp/tree/esm
184
+
155
185
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
156
186
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
157
187
 
@@ -165,6 +195,18 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
165
195
 
166
196
  [@stdlib/constants/float64/e]: https://www.npmjs.com/package/@stdlib/constants-float64-e
167
197
 
198
+ <!-- <related-links> -->
199
+
200
+ [@stdlib/math/base/special/exp10]: https://www.npmjs.com/package/@stdlib/math-base-special-exp10
201
+
202
+ [@stdlib/math/base/special/exp2]: https://www.npmjs.com/package/@stdlib/math-base-special-exp2
203
+
204
+ [@stdlib/math/base/special/expm1]: https://www.npmjs.com/package/@stdlib/math-base-special-expm1
205
+
206
+ [@stdlib/math/base/special/ln]: https://www.npmjs.com/package/@stdlib/math-base-special-ln
207
+
208
+ <!-- </related-links> -->
209
+
168
210
  </section>
169
211
 
170
212
  <!-- /.links -->
package/lib/polyval_p.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license Apache-2.0
3
3
  *
4
- * Copyright (c) 2018 The Stdlib Authors.
4
+ * Copyright (c) 2021 The Stdlib Authors.
5
5
  *
6
6
  * Licensed under the Apache License, Version 2.0 (the "License");
7
7
  * you may not use this file except in compliance with the License.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/math-base-special-exp",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Natural exponential function.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {