maxabsf

Return the maximum absolute single-precision floating-point number.

Usage

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

maxabsf( x, y )

Returns the maximum absolute single-precision floating-point number.

var v = maxabsf( -4.0, 3.0 );
// returns 4.0

v = maxabsf( +0.0, -0.0 );
// returns +0.0

If any argument is NaN, the function returns NaN.

var v = maxabsf( 4.2, NaN );
// returns NaN

v = maxabsf( NaN, 3.14 );
// returns NaN

Examples

var randu = require( '@stdlib/random/array/uniform' );
var maxabsf = require( '@stdlib/math/base/special/maxabsf' );

var opts = {
    'dtype': 'float32'
};

var x = randu( 100, -500.0, 500.0, opts );
var y = randu( 100, -500.0, 500.0, opts );

var v;
var i;
for ( i = 0; i < 100; i++ ) {
    v = maxabsf( x[ i ], y[ i ] );
    console.log( 'maxabsf(%d,%d) = %d', x[ i ], y[ i ], v );
}

C APIs

Usage

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

stdlib_base_maxabsf( x, y )

Returns the maximum absolute single-precision floating-point number.

float out = stdlib_base_maxabsf( -4.2f, 3.14f );
// returns ~4.2f

out = stdlib_base_maxabsf( 0.0f, -0.0f );
// returns +0.0f

The function accepts the following arguments:

  • x: [in] float input value.
  • y: [in] float input value.
float stdlib_base_maxabsf( const float x, const float y );

Examples

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

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

    for ( i = 0; i < 100; i++ ) {
        x = ( ( (float)rand() / (float)RAND_MAX ) * 1000.0f ) - 500.0f;
        y = ( ( (float)rand() / (float)RAND_MAX ) * 1000.0f ) - 500.0f;
        v = stdlib_base_maxabsf( x, y );
        printf( "x: %f, y: %f, maxabsf(x, y): %f\n", x, y, v );
    }
}
Did you find this page helpful?