Returns the closest double approximation of the square root of the argument. Special cases: sqrt(+0.0) = +0.0 sqrt(-0.0) = -0.0 sqrt( (anything < 0) ) = NaN sqrt(+infinity) = +infinity sqrt(NaN) = NaN
(double d)
| 811 | * @return the square root of the argument. |
| 812 | */ |
| 813 | public static native double sqrt(double d); |
| 814 | |
| 815 | /** |
| 816 | * Returns the closest double approximation of the tangent of the argument. |