Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@stdlib/math-base-special-sqrt
Advanced tools
Compute the principal square root of a double-precision floating-point number.
Compute the principal square root of a double-precision floating-point number.
The principal square root is defined as
npm install @stdlib/math-base-special-sqrt
var sqrt = require( '@stdlib/math-base-special-sqrt' );
Computes the principal square root of a double-precision floating-point number.
var v = sqrt( 4.0 );
// returns 2.0
v = sqrt( 9.0 );
// returns 3.0
v = sqrt( 0.0 );
// returns 0.0
v = sqrt( NaN );
// returns NaN
For negative numbers, the principal square root is not defined.
var v = sqrt( -4.0 );
// returns NaN
var randu = require( '@stdlib/random-base-randu' );
var round = require( '@stdlib/math-base-special-round' );
var sqrt = require( '@stdlib/math-base-special-sqrt' );
var x;
var i;
for ( i = 0; i < 100; i++ ) {
x = round( randu() * 100.0 );
console.log( 'sqrt(%d) = %d', x, sqrt( x ) );
}
#include "stdlib/math/base/special/sqrt.h"
Computes the principal square root of a double-precision floating-point number.
double y = stdlib_base_sqrt( 9.0 );
// returns 3.0
The function accepts the following arguments:
[in] double
input value.double stdlib_base_sqrt( const double x );
#include "stdlib/math/base/special/sqrt.h"
#include <stdio.h>
int main() {
double x[] = { 3.14, 9.0, 0.0, 0.0/0.0 };
double y;
int i;
for ( i = 0; i < 4; i++ ) {
y = stdlib_base_sqrt( x[ i ] );
printf( "sqrt(%lf) = %lf\n", x[ i ], y );
}
}
@stdlib/math/base/special/cbrt
: compute the cube root of a double-precision floating-point number.@stdlib/math/base/special/rsqrt
: compute the reciprocal square root of a double-precision floating-point number.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.
See LICENSE.
Copyright © 2016-2022. The Stdlib Authors.
0.0.8 (2022-02-16)
No changes reported for this release.
</section> <!-- /.release --> <section class="release" id="v0.0.7">FAQs
Compute the principal square root of a double-precision floating-point number.
The npm package @stdlib/math-base-special-sqrt receives a total of 30,869 weekly downloads. As such, @stdlib/math-base-special-sqrt popularity was classified as popular.
We found that @stdlib/math-base-special-sqrt demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.