isProbability

Test if a value is a probability.
A probability is defined as a numeric value on the interval [0,1]
.
Installation
npm install @stdlib/assert-is-probability
Usage
var isProbability = require( '@stdlib/assert-is-probability' );
isProbability( value )
Tests if a value
is a probability.
var Number = require( '@stdlib/number-ctor' );
var bool = isProbability( 0.5 );
bool = isProbability( new Number( 0.5 ) );
bool = isProbability( 3.14 );
bool = isProbability( -5.0 );
bool = isProbability( NaN );
bool = isProbability( null );
isProbability.isPrimitive( value )
Tests if a value
is a primitive probability.
var Number = require( '@stdlib/number-ctor' );
var bool = isProbability.isPrimitive( 0.33 );
bool = isProbability.isPrimitive( new Number( 0.33 ) );
isProbability.isObject( value )
Tests if a value
is a Number
object having a value which is a probability.
var Number = require( '@stdlib/number-ctor' );
var bool = isProbability.isObject( 0.11 );
bool = isProbability.isObject( new Number( 0.11 ) );
Examples
var Number = require( '@stdlib/number-ctor' );
var isProbability = require( '@stdlib/assert-is-probability' );
var bool = isProbability( 0.5 );
bool = isProbability( new Number( 0.5 ) );
bool = isProbability( 0.0 );
bool = isProbability( 1.0 );
bool = isProbability( 3.14 );
bool = isProbability( -5.0 );
bool = isProbability( NaN );
bool = isProbability( '0.5' );
bool = isProbability( null );
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
License
See LICENSE.
Copyright
Copyright © 2016-2021. The Stdlib Authors.
0.0.2 (2021-06-15)
No changes reported for this release.
</section>
<!-- /.release -->
<section class="release" id="v0.0.1">