File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed
lib/node_modules/@stdlib/stats/base/dists/arcsine/mean
include/stdlib/stats/base/dists/arcsine Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,6 @@ extern "C" {
2828
2929/**
3030* Returns the mean of an arcsine distribution with minimum support `a` and maximum support `b`.
31- *
32- * @param a minimum support
33- * @param b maximum support
34- * @return mean of the distribution
3531*/
3632double stdlib_base_dists_arcsine_mean ( const double a , const double b );
3733
Original file line number Diff line number Diff line change @@ -26,12 +26,12 @@ var addon = require( './../src/addon.node' );
2626// MAIN //
2727
2828/**
29- * Returns the mean of an arcsine distribution with minimum support `a` and maximum support `b` .
29+ * Returns the expected value of an arcsine distribution.
3030*
3131* @private
3232* @param {number } a - minimum support
3333* @param {number } b - maximum support
34- * @returns {number } mean
34+ * @returns {number } expected value
3535*
3636* @example
3737* var v = mean( 0.0, 1.0 );
Original file line number Diff line number Diff line change 1616* limitations under the License.
1717*/
1818
19- #include "stdlib/math/base/assert/is_nan.h"
2019#include "stdlib/stats/base/dists/arcsine/mean.h"
20+ #include "stdlib/math/base/assert/is_nan.h"
2121
2222/**
2323* Returns the expected value of an arcsine distribution.
You can’t perform that action at this time.
0 commit comments