JSPM

@stdlib/math-base-assert-is-evenf

0.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 89
  • Score
    100M100P100Q84252F
  • License Apache-2.0

Test if a finite single-precision floating-point number is an even number.

Package Exports

  • @stdlib/math-base-assert-is-evenf
  • @stdlib/math-base-assert-is-evenf/dist
  • @stdlib/math-base-assert-is-evenf/dist/index.js
  • @stdlib/math-base-assert-is-evenf/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stdlib/math-base-assert-is-evenf) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

isEvenf

NPM version Build Status Coverage Status

Test if a finite single-precision floating-point number is an even number.

Installation

npm install @stdlib/math-base-assert-is-evenf

Usage

var isEvenf = require( '@stdlib/math-base-assert-is-evenf' );

isEvenf( x )

Tests if a finite single-precision floating-point number is an even number.

var bool = isEvenf( 5.0 );
// returns false

bool = isEvenf( -2.0 );
// returns true

bool = isEvenf( 0.0 );
// returns true

bool = isEvenf( NaN );
// returns false

Notes

  • The function assumes a finite number. If provided positive or negative infinity, the function will return true, when, in fact, the result is undefined. If x can be infinite, wrap the implementation as follows:

    function check( x ) {
        return (
            x < Infinity &&
            x > -Infinity &&
            isEvenf( x )
        );
    }
    
    var bool = check( Infinity );
    // returns false
    
    bool = check( -Infinity );
    // returns false

Examples

var discreteUniform = require( '@stdlib/random-array-discrete-uniform' );
var logEachMap = require( '@stdlib/console-log-each-map' );
var isEvenf = require( '@stdlib/math-base-assert-is-evenf' );

var opts = {
    'dtype': 'float32'
};
var x = discreteUniform( 100, 0, 100, opts );

function isEvenfWrapper( integer ) {
    return ( isEvenf( integer ) ) ? 'even' : 'not even';
}
logEachMap( '%d is %s', x, isEvenfWrapper );

C APIs

Usage

#include "stdlib/math/base/assert/is_evenf.h"

stdlib_base_is_evenf( x )

Tests if a finite single-precision floating-point number is an even number.

#include <stdbool.h>

bool out = stdlib_base_is_evenf( 1.0f );
// returns false

out = stdlib_base_is_evenf( 4.0f );
// returns true

The function accepts the following arguments:

  • x: [in] float input value.
bool stdlib_base_is_evenf( const float x );

Examples

#include "stdlib/math/base/assert/is_evenf.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

int main( void ) {
    float x;
    bool v;
    int i;

    for ( i = 0; i < 100; i++ ) {
        x = ( ( (float)rand() / (float)RAND_MAX ) * 100.0f );
        v = stdlib_base_is_evenf( x );
        printf( "x = %f, is_evenf(x) = %s\n", x, ( v ) ? "even" : "not even" );
    }
}