isPositiveFinite
Test if a double-precision floating-point numeric value is a positive finite number.
Usage
var isPositiveFinite = require( '@stdlib/math/base/assert/is-positive-finite' );
isPositiveFinite( x )
Tests if a double-precision floating-point numeric
value is a positive finite number.
var bool = isPositiveFinite( 3.14 );
// returns true
bool = isPositiveFinite( -2.0 );
// returns false
Examples
var isPositiveFinite = require( '@stdlib/math/base/assert/is-positive-finite' );
var bool = isPositiveFinite( 3.14 );
// returns true
bool = isPositiveFinite( -2.0 );
// returns false
bool = isPositiveFinite( Infinity );
// returns false
bool = isPositiveFinite( 0.0 );
// returns false
bool = isPositiveFinite( NaN );
// returns false
C APIs
Usage
#include "stdlib/math/base/assert/is_positive_finite.h"
stdlib_base_is_positive_finite( x )
Tests if a double-precision floating-point numeric value is a positive finite number.
#include <stdbool.h>
bool out = stdlib_base_is_positive_finite( 3.14 );
// returns true
out = stdlib_base_is_positive_finite( -2.0 );
// returns false
The function accepts the following arguments:
- x:
[in] double
input value.
bool stdlib_base_is_positive_finite( const double x );
Examples
#include "stdlib/math/base/assert/is_positive_finite.h"
#include <stdio.h>
#include <stdbool.h>
int main( void ) {
const double x[] = { 5.0, -5.0, 3.14, -3.14, 0.0, 0.0/0.0 };
bool b;
int i;
for ( i = 0; i < 6; i++ ) {
b = stdlib_base_is_positive_finite( x[ i ] );
printf( "Value: %lf. Is positive finite? %s.\n", x[ i ], ( b ) ? "True" : "False" );
}
}