Home > lang > cbr 
 en fr de es it nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  See english version 
Cbr
Value = Cbr ( Number AS Float ) AS Float

Computes the cubic root of a number. The number can be zero, negative or positive.

Example

PRINT Cbr(2)

1.259921049895

PRINT Cbr(-8)

-2

DIM i AS INTEGER
FOR i = -2 TO 2
  PRINT i, Cbr(i)
NEXT

-2    -1.259921049895
-1    -1
0     0
1     1
2     1.259921049895

See also

Logarithms & Exponentials Functions