Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ var quantile = require( '@stdlib/stats/base/dists/exponential/quantile' );

#### quantile( p, lambda )

Evaluates the [quantile function][quantile-function] for a [exponential][exponential-distribution] distribution with rate parameter `lambda`.
Evaluates the [quantile function][quantile-function] for an [exponential][exponential-distribution] distribution with rate parameter `lambda`.

```javascript
var y = quantile( 0.5, 0.1 );
Expand Down Expand Up @@ -165,7 +165,7 @@ for ( i = 0; i < 10; i++ ) {

#### stdlib_base_dists_exponential_quantile( p, lambda )

Evaluates the [quantile function][quantile-function] for a [exponential][exponential-distribution] distribution with rate parameter `lambda`.
Evaluates the [quantile function][quantile-function] for an [exponential][exponential-distribution] distribution with rate parameter `lambda`.

```c
double out = stdlib_base_dists_exponential_quantile( 0.8, 1.0 );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ static double random_uniform( const double min, const double max ) {
static double benchmark( void ) {
double elapsed;
double lambda[ 100 ];
double y;
double p[ 100 ];
double y;
double t;
int i;

Expand Down