sqrt
Overloads
| Name | Description |
|---|---|
sqrt(real p) -> real | Calculates the square root of the given value. |
sqrt(integer p) -> real | Calculates the square root of the given value. |
sqrt(bool p) -> real | Calculates the square root of the given value. |
sqrt(complex p) -> complex | Calculates the square root of the given value. |
sqrt(real p) -> real
Calculates the square root of the given value.
Parameters
- p: The value to calculate the square root for.
sqrt(integer p) -> real
Calculates the square root of the given value.
Parameters
- p: The value to calculate the square root for.
sqrt(bool p) -> real
Calculates the square root of the given value.
Parameters
- p: The value to calculate the square root for.
sqrt(complex p) -> complex
Calculates the square root of the given value.
Parameters
- p: The value to calculate the square root for.