Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolves address commit comments - 5903 #5912

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
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 @@ -19,6 +19,8 @@
#include "stdlib/stats/base/dists/uniform/stdev.h"
#include "stdlib/math/base/assert/is_nan.h"

static const double SQRT_ONE_TWELFTH = 0.28867513459481287; // stdlib_base_sqrt( 1.0/12.0 )

/**
* Returns the standard deviation of a uniform distribution.
*
Expand All @@ -30,9 +32,6 @@
* double v = stdev( 4.0, 12.0 );
* // returns ~2.309
*/

static const double SQRT_ONE_TWELFTH = 0.28867513459481287; // stdlib_base_sqrt( 1.0/12.0 )

double stdlib_base_dists_uniform_stdev( const double a, const double b ) {
if (
stdlib_base_is_nan( a ) ||
Expand All @@ -41,5 +40,5 @@ double stdlib_base_dists_uniform_stdev( const double a, const double b ) {
) {
return 0.0 / 0.0; // NaN
}
return SQRT_ONE_TWELFTH * ( b-a );
return SQRT_ONE_TWELFTH * (b-a);
}
Loading