nanmax
Return the maximum value, ignoring NaN.
Usage
var nanmax = require( '@stdlib/math/base/special/nanmax' );
nanmax( x, y )
Returns the maximum value.
var v = nanmax( 4.2, 3.14 );
// returns 4.2
v = nanmax( +0.0, -0.0 );
// returns +0.0
If any argument is NaN
, the function returns the other operand.
var v = nanmax( 4.2, NaN );
// returns 4.2
v = nanmax( NaN, 3.14 );
// returns 3.14
If both arguments are NaN
, the function returns NaN
.
var v = nanmax( NaN, NaN );
// returns NaN
Examples
var nanmax = require( '@stdlib/math/base/special/nanmax' );
var m = nanmax( 3.0, 4.0 );
console.log( m );
// => 4.0
m = nanmax( NaN, 4.0 );
console.log( m );
// => 4.0
m = nanmax( 4.0, NaN );
console.log( m );
// => 4.0
m = nanmax( NaN, NaN );
console.log( m );
// => NaN
C APIs
Usage
#include "stdlib/math/base/special/nanmax.h"
stdlib_base_nanmax( x, y )
Returns the minimum value, ignoring NaN.
double out = stdlib_base_nanmax( 4.2, 3.14 );
// returns 4.2
out = stdlib_base_nanmax( 4.14, 0.0 / 0.0 );
// returns 4.14
The function accepts the following arguments:
- x:
[in] double
input value. - y:
[in] double
input value.
double stdlib_base_nanmax( const double x, const double y );
Examples
#include "stdlib/math/base/special/nanmax.h"
#include <stdio.h>
int main( void ) {
const double x[] = { 1.0, 0.45, -0.89, 0.0 / 0.0, -0.78, -0.22, 0.66, 0.11, -0.55, 0.0 };
const double y[] = { -0.22, 0.66, 0.0, -0.55, 0.33, 1.0, 0.0 / 0.0, 0.11, 0.45, -0.78 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
v = stdlib_base_nanmax( x[i], y[i] );
printf( "x[ %d ]: %lf, y[ %d ]: %lf, nanmax( x[ %d ], y[ %d ] ): %lf\n", i, x[ i ], i, y[ i ], i, i, v );
}
}