Skip to content

Commit d1c2836

Browse files
committed
Added Math_CubeRoot article
1 parent 27981f4 commit d1c2836

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Math_CubeRoot
2+
3+
`Math_CubeRoot` returns the cube root of a specified number.
4+
5+
```csharp
6+
Math_CubeRoot (
7+
@value FLOAT (53))
8+
RETURNS FLOAT (53)
9+
```
10+
11+
## Parameters
12+
13+
- **value**: The number whose cude root is to be found.
14+
15+
## Returns
16+
17+
The cube root of a `value`.
18+
19+
## Example
20+
21+
```csharp
22+
SELECT SQLNET::Math_CubeRoot(2147483647)
23+
```
24+

docs2/pages/documentations/math/math.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ Provides methods for trigonometric, and other common mathematical functions.
66
| :--- | :---------- | :------ |
77
| [Math_BigMul(a, b)](/math-bigmul) | Produces the full product of two 32-bit numbers. | [Try it]()|
88
| [Math_Cosh(value)](/math-cosh) | Returns the hyperbolic cosine of the specified angle. | [Try it]()|
9+
| [Math_CubeRoot(value)](/math-cube-root) | Returns the cube root of a specified number. | [Try it]()|
910

0 commit comments

Comments
 (0)