time-to-botec/js/node_modules/@stdlib/math/base/special/inv
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
docs feat: add the node modules 2022-12-03 12:44:49 +00:00
include/stdlib/math/base/special feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
src feat: add the node modules 2022-12-03 12:44:49 +00:00
binding.gyp feat: add the node modules 2022-12-03 12:44:49 +00:00
include.gypi feat: add the node modules 2022-12-03 12:44:49 +00:00
manifest.json feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

inv

Compute the multiplicative inverse of a double-precision floating-point number.

The multiplicative inverse (or reciprocal) is defined as

Multiplicative inverse

Usage

var inv = require( '@stdlib/math/base/special/inv' );

inv( x )

Computes the multiplicative inverse of a double-precision floating-point number x.

var v = inv( -1.0 );
// returns -1.0

v = inv( 2.0 );
// returns 0.5

v = inv( 0.0 );
// returns Infinity

v = inv( -0.0 );
// returns -Infinity

v = inv( NaN );
// returns NaN

Examples

var randu = require( '@stdlib/random/base/randu' );
var round = require( '@stdlib/math/base/special/round' );
var inv = require( '@stdlib/math/base/special/inv' );

var x;
var i;

for ( i = 0; i < 100; i++ ) {
    x = round( randu()*100.0 ) - 50.0;
    console.log( 'inv(%d) = %d', x, inv( x ) );
}

C APIs

Usage

#include "stdlib/math/base/special/inv.h"

stdlib_base_inv( x )

Computes the multiplicative inverse of a double-precision floating-point number.

double y = stdlib_base_inv( 2.0 );
// returns 0.5

The function accepts the following arguments:

  • x: [in] double input value.
double stdlib_base_inv( const double x );

Examples

#include "stdlib/math/base/special/inv.h"
#include <stdio.h>

int main() {
    double x[] = { 3.0, 4.0, 5.0, 12.0 };

    double y;
    int i;
    for ( i = 0; i < 4; i++ ) {
        y = stdlib_base_inv( x[ i ] );
        printf( "inv(%lf) = %lf\n", x[ i ], y );
    }
}