time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

repl.txt (489B)


      1 
      2 {{alias}}( x )
      3     Computes the cube root of a double-precision floating-point number.
      4 
      5     Parameters
      6     ----------
      7     x: number
      8         Input value.
      9 
     10     Returns
     11     -------
     12     y: number
     13         Cube root.
     14 
     15     Examples
     16     --------
     17     > var y = {{alias}}( 64.0 )
     18     4.0
     19     > y = {{alias}}( 27.0 )
     20     3.0
     21     > y = {{alias}}( 0.0 )
     22     0.0
     23     > y = {{alias}}( -0.0 )
     24     -0.0
     25     > y = {{alias}}( -9.0 )
     26     ~-2.08
     27     > y = {{alias}}( NaN )
     28     NaN
     29 
     30     See Also
     31     --------
     32