
Product
A New Overview in our Dashboard
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
@stdlib/math-base-special-sqrt
Advanced tools
Compute the principal square root of a double-precision floating-point number.
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
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( void ) {
const 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-2024. The Stdlib Authors.
0.2.2 (2024-07-27)
<section class="commits">41d41e9
- test: include trailing newlines in Julia-generated JSON fixtures (by Philipp Burckhardt)9ed7d0e
- chore: add missing trailing newlines (by Philipp Burckhardt)A total of 1 person contributed to this release. Thank you to this contributor:
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 95,126 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.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.