time-to-botec

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

repl.txt (459B)


      1 
      2 {{alias}}( x )
      3     Computes the inverse cotangent of a number.
      4 
      5     Parameters
      6     ----------
      7     x: number
      8         Input value.
      9 
     10     Returns
     11     -------
     12     y: number
     13         Inverse cotangent (in radians).
     14 
     15     Examples
     16     --------
     17     > var y = {{alias}}( 2.0 )
     18     ~0.4636
     19     > y = {{alias}}( 0.0 )
     20     ~1.5708
     21     > y = {{alias}}( 0.5 )
     22     ~1.1071
     23     > y = {{alias}}( 1.0 )
     24     ~0.7854
     25     > y = {{alias}}( NaN )
     26     NaN
     27 
     28     See Also
     29     --------
     30