std::sqrt
From cppreference.com
Defined in header
<cmath>
|
||
float sqrt( float arg );
|
(1) | |
double sqrt( double arg );
|
(2) | |
long double sqrt( long double arg );
|
(3) | |
double sqrt( Integral arg );
|
(4) | (since C++11) |
Computes the square root of arg
.
[edit] Parameters
arg | - | Value of a floating-point or Integral type |
[edit] Return value
Square root of arg
.
Domain error occurs if arg
is negative. NAN is returned in that case.
[edit] See also
(C++11)
|
computes cubic root (3√x) (function) |
raises a number to the given power (xy) (function) |
|
complex square root in the range of the right half-plane (function template) |
|
applies the function std::sqrt to each element of valarray (function template) |
|
C documentation for sqrt
|