@stdlib/math-base-special-wrap v0.2.3
wrap
Wrap a value on the half-open interval
[min,max).
Installation
npm install @stdlib/math-base-special-wrapUsage
var wrap = require( '@stdlib/math-base-special-wrap' );wrap( v, min, max )
Wraps a value on the half-open interval [min,max).
var v = wrap( 3.14, 0.0, 5.0 );
// returns 3.14
v = wrap( -3.14, 0.0, 5.0 );
// returns ~1.86
v = wrap( 10.0, 0.0, 5.0 );
// returns 0.0
v = wrap( -0.0, 0.0, 5.0 );
// returns 0.0
v = wrap( 0.0, -3.14, -0.0 );
// returns -3.14If provided NaN for any argument, the function returns NaN.
var v = wrap( NaN, 0.0, 5.0 );
// returns NaN
v = wrap( 0.0, NaN, 5.0 );
// returns NaN
v = wrap( 3.14, 0.0, NaN );
// returns NaNIf provided min == max, the function returns NaN.
var v = wrap( 3.14, 3.0, 3.0 );
// returns NaNNotes
- The function does not distinguish between positive and negative zero. Where appropriate, the function returns positive zero.
Examples
var discreteUniform = require( '@stdlib/random-base-discrete-uniform' );
var wrap = require( '@stdlib/math-base-special-wrap' );
var min;
var max;
var v;
var i;
for ( i = 0; i < 100; i++ ) {
min = discreteUniform( 0.0, 10.0 );
max = discreteUniform( 5.0, 15.0 );
v = discreteUniform( -20.0, 20.0 );
console.log( 'wrap(%d,%d,%d) => %d', v, min, max, wrap( v, min, max ) );
}C APIs
Usage
#include "stdlib/math/base/special/wrap.h"stdlib_base_wrap( v, min, max )
Wraps a value on the half-open interval [min,max).
double v = stdlib_base_wrap( 3.14, 0.0, 5.0 );
// returns 3.14
v = stdlib_base_wrap( -3.14, 0.0, 5.0 );
// returns ~1.86The function accepts the following arguments:
- v:
[in] doubleinput value to wrap. - min:
[in] doubleminimum value. - max:
[in] doublemaximum value.
double stdlib_base_wrap( const double v, const double min, const double max )Examples
#include "stdlib/math/base/special/wrap.h"
#include <stdio.h>
int main( void ) {
const double min[] = { 0.0, 0.0, 0.0, 0.0, -3.14 };
const double max[] = { 5.0, 5.0, 5.0, 5.0, -0.0 };
const double v[] = { 3.14, -3.14, 10.0, -0.0, 0.0 };
double out;
int i;
for ( i = 0; i < 5; i++ ) {
out = stdlib_base_wrap( v[i], min[i], max[i] );
printf( "wrap(%lf,%lf,%lf) => %lf\n", v[i], min[i], max[i], out );
}
}See Also
@stdlib/math-base/special/clamp: restrict a double-precision floating-point number to a specified range.
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.