0.3.0 • Published 1 year ago
@stdlib/math-base-assert-is-nonpositive-finite v0.3.0
isNonPositiveFinite
Test if a numeric value is a nonpositive finite number.
Installation
npm install @stdlib/math-base-assert-is-nonpositive-finiteUsage
var isNonPositiveFinite = require( '@stdlib/math-base-assert-is-nonpositive-finite' );isNonPositiveFinite( x )
Tests if a numeric value is a nonpositive finite number.
var bool = isNonPositiveFinite( -3.14 );
// returns true
bool = isNonPositiveFinite( 2.0 );
// returns falseExamples
var isNonPositiveFinite = require( '@stdlib/math-base-assert-is-nonpositive-finite' );
var bool = isNonPositiveFinite( -3.14 );
// returns true
bool = isNonPositiveFinite( 0.0 );
// returns true
bool = isNonPositiveFinite( 2.0 );
// returns false
bool = isNonPositiveFinite( Infinity );
// returns false
bool = isNonPositiveFinite( NaN );
// returns falseC APIs
Usage
#include "stdlib/math/base/assert/is_nonpositive_finite.h"stdlib_base_is_nonpositive_finite( x )
Tests if a numeric value is a nonpositive finite number.
#include <stdbool.h>
bool out = stdlib_base_is_nonpositive_finite( -3.14 );
// returns true
out = stdlib_base_is_nonpositive_finite( 2.0 );
// returns falseThe function accepts the following arguments:
- x:
[in] doubleinput value.
bool stdlib_base_is_nonpositive_finite( const double x );Examples
#include "stdlib/math/base/assert/is_nonpositive_finite.h"
#include <stdbool.h>
#include <stdio.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_nonpositive_finite( x[ i ] );
printf( "Value: %lf. Is NonPositive Finite? %s.\n", x[ i ], ( b ) ? "True" : "False" );
}
}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.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.