0.3.0 • Published 1 year ago
@stdlib/math-base-special-fast-hypot v0.3.0
hypot
Compute the hypotenuse.
Installation
npm install @stdlib/math-base-special-fast-hypotUsage
var hypot = require( '@stdlib/math-base-special-fast-hypot' );hypot( x, y )
Computes the hypotenuse.
var h = hypot( -5.0, 12.0 );
// returns 13.0Notes
For a sufficiently large
xand/ory, computing the hypotenuse will overflow.var h = hypot( 1.0e154, 1.0e154 ); // returns InfinitySimilarly, for sufficiently small
xand/ory, computing the hypotenuse will underflow.var h = hypot( 1e-200, 1.0e-200 ); // returns 0.0
Examples
var randu = require( '@stdlib/random-base-randu' );
var round = require( '@stdlib/math-base-special-round' );
var hypot = require( '@stdlib/math-base-special-fast-hypot' );
var x;
var y;
var h;
var i;
for ( i = 0; i < 100; i++ ) {
x = round( randu()*100.0 ) - 50.0;
y = round( randu()*100.0 ) - 50.0;
h = hypot( x, y );
console.log( 'hypot(%d,%d) = %d', x, y, h );
}C APIs
Usage
#include "stdlib/math/base/special/fast/hypot.hstdlib_base_fast_hypot( x, y )
Computes the hypotenuse.
double h = stdlib_base_fast_hypot( 5.0, 12.0 );
// returns 13.0The function accepts the following arguments:
- x:
[in] doubleinput value. - y:
[in] doubleinput value.
double stdlib_base_fast_hypot( const double x, const double y );Examples
#include "stdlib/math/base/special/fast/hypot.h"
#include <stdio.h>
int main( void ) {
const double x[] = { 3.0, 4.0, 5.0, 12.0 };
double y;
int i;
for ( i = 0; i < 4; i += 2 ) {
y = stdlib_base_fast_hypot( x[ i ], x[ i + 1 ] );
printf( "hypot(%lf, %lf) = %lf\n", x[ i ], x[ i + 1 ], y );
}
}See Also
@stdlib/math-base/special/hypot: compute the hypotenuse avoiding overflow and underflow.
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.