time-to-botec

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

repl.txt (412B)


      1 
      2 {{alias}}( x )
      3     Computes the hyperbolic sine of a number.
      4 
      5     Parameters
      6     ----------
      7     x: number
      8         Input value (in radians).
      9 
     10     Returns
     11     -------
     12     y: number
     13         Hyperbolic sine.
     14 
     15     Examples
     16     --------
     17     > var y = {{alias}}( 0.0 )
     18     0.0
     19     > y = {{alias}}( 2.0 )
     20     ~3.627
     21     > y = {{alias}}( -2.0 )
     22     ~-3.627
     23     > y = {{alias}}( NaN )
     24     NaN
     25 
     26     See Also
     27     --------
     28