106 lines
2.3 KiB
Markdown
106 lines
2.3 KiB
Markdown
|
<!--
|
||
|
|
||
|
@license Apache-2.0
|
||
|
|
||
|
Copyright (c) 2018 The Stdlib Authors.
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
|
||
|
-->
|
||
|
|
||
|
# Natural Exponential Function
|
||
|
|
||
|
> Natural [exponential function][exponential-function].
|
||
|
|
||
|
<section class="intro">
|
||
|
|
||
|
The natural [exponential function][exponential-function] is defined as
|
||
|
|
||
|
<!-- <equation class="equation" label="eq:natural_exponential_function" align="center" raw="y = e^x" alt="Natural exponential function definition"> -->
|
||
|
|
||
|
<div class="equation" align="center" data-raw-text="y = e^x" data-equation="eq:natural_exponential_function">
|
||
|
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@bb29798906e119fcb2af99e94b60407a270c9b32/lib/node_modules/@stdlib/math/base/special/exp/docs/img/equation_natural_exponential_function.svg" alt="Natural exponential function definition">
|
||
|
<br>
|
||
|
</div>
|
||
|
|
||
|
<!-- </equation> -->
|
||
|
|
||
|
where `e` is [Euler's][@stdlib/constants/float64/e] number.
|
||
|
|
||
|
</section>
|
||
|
|
||
|
<!-- /.intro -->
|
||
|
|
||
|
<section class="usage">
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```javascript
|
||
|
var exp = require( '@stdlib/math/base/special/exp' );
|
||
|
```
|
||
|
|
||
|
#### exp( x )
|
||
|
|
||
|
Evaluates the natural [exponential function][exponential-function].
|
||
|
|
||
|
```javascript
|
||
|
var v = exp( 4.0 );
|
||
|
// returns ~54.5982
|
||
|
|
||
|
v = exp( -9.0 );
|
||
|
// returns ~1.234e-4
|
||
|
|
||
|
v = exp( 0.0 );
|
||
|
// returns 1.0
|
||
|
|
||
|
v = exp( NaN );
|
||
|
// returns NaN
|
||
|
```
|
||
|
|
||
|
</section>
|
||
|
|
||
|
<!-- /.usage -->
|
||
|
|
||
|
<section class="examples">
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
<!-- eslint no-undef: "error" -->
|
||
|
|
||
|
```javascript
|
||
|
var randu = require( '@stdlib/random/base/randu' );
|
||
|
var exp = require( '@stdlib/math/base/special/exp' );
|
||
|
|
||
|
var x;
|
||
|
var i;
|
||
|
|
||
|
for ( i = 0; i < 100; i++ ) {
|
||
|
x = (randu()*100.0) - 50.0;
|
||
|
console.log( 'e^%d = %d', x, exp( x ) );
|
||
|
}
|
||
|
```
|
||
|
|
||
|
</section>
|
||
|
|
||
|
<!-- /.examples -->
|
||
|
|
||
|
<section class="links">
|
||
|
|
||
|
[exponential-function]: https://en.wikipedia.org/wiki/Exponential_function
|
||
|
|
||
|
[@stdlib/constants/float64/e]: https://www.npmjs.com/package/@stdlib/constants-float64-e
|
||
|
|
||
|
</section>
|
||
|
|
||
|
<!-- /.links -->
|