time-to-botec

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

repl.txt (482B)


      1 
      2 {{alias}}( x, y )
      3     Computes the natural logarithm of `exp(x) + exp(y)`.
      4 
      5     Parameters
      6     ----------
      7     x: number
      8         Input value.
      9 
     10     y: number
     11         Input value.
     12 
     13     Returns
     14     -------
     15     v: number
     16         Function value.
     17 
     18     Examples
     19     --------
     20     > var v = {{alias}}( 90.0, 90.0 )
     21     ~90.6931
     22     > v = {{alias}}( -20.0, 90.0 )
     23     90.0
     24     > v = {{alias}}( 0.0, -100.0 )
     25     ~3.7201e-44
     26     > v = {{alias}}( NaN, NaN )
     27     NaN
     28 
     29     See Also
     30     --------
     31