diff --git a/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/include/stdlib/stats/base/dists/pareto-type1/logcdf.h b/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/include/stdlib/stats/base/dists/pareto-type1/logcdf.h index b59706e1f437..8b92bcdf3719 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/include/stdlib/stats/base/dists/pareto-type1/logcdf.h +++ b/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/include/stdlib/stats/base/dists/pareto-type1/logcdf.h @@ -27,7 +27,7 @@ extern "C" { #endif /** -* Evaluates the cumulative distribution function (CDF) for a Pareto (Type I) distribution with shape parameter `alpha` and scale parameter `beta` at a value `x`. +* Evaluates the natural logarithm of the cumulative distribution function (CDF) for a Pareto (Type I) distribution with shape parameter `alpha` and scale parameter `beta` at a value `x`. */ double stdlib_base_dists_pareto_type1_logcdf( const double x, const double alpha, const double beta ); diff --git a/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/lib/main.js b/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/lib/main.js index cf7af3fa0219..463b2197f079 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/lib/main.js +++ b/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/lib/main.js @@ -29,7 +29,7 @@ var NINF = require( '@stdlib/constants/float64/ninf' ); // MAIN // /** -* Evaluates the cumulative distribution function (CDF) for a Pareto (Type I) distribution with shape parameter `alpha` and scale parameter `beta` at a value `x`. +* Evaluates the natural logarithm of the cumulative distribution function (CDF) for a Pareto (Type I) distribution with shape parameter `alpha` and scale parameter `beta` at a value `x`. * * @param {number} x - input value * @param {PositiveNumber} alpha - shape parameter diff --git a/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/lib/native.js b/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/lib/native.js index d2bc601cd71b..e4e3636dd1c2 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/lib/native.js +++ b/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/lib/native.js @@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' ); // MAIN // /** -* Evaluates the cumulative distribution function (CDF) for a Pareto (Type I) distribution with shape parameter `alpha` and scale parameter `beta` at a value `x`. +* Evaluates the natural logarithm of the cumulative distribution function (CDF) for a Pareto (Type I) distribution with shape parameter `alpha` and scale parameter `beta` at a value `x`. * * @private * @param {number} x - input value diff --git a/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/src/main.c b/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/src/main.c index 1b0f7cc2ba7f..eda300300b56 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/src/main.c +++ b/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logcdf/src/main.c @@ -23,7 +23,7 @@ #include "stdlib/math/base/special/pow.h" /** -* Evaluates the cumulative distribution function (CDF) for a Pareto (Type I) distribution with shape parameter `alpha` and scale parameter `beta` at a value `x`. +* Evaluates the natural logarithm of the cumulative distribution function (CDF) for a Pareto (Type I) distribution with shape parameter `alpha` and scale parameter `beta` at a value `x`. * * @param x input value * @param alpha shape parameter