time-to-botec

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

repl.txt (429B)


      1 
      2 {{alias}}( x )
      3     Converts a double-precision floating-point number to the nearest single-
      4     precision floating-point number.
      5 
      6     Parameters
      7     ----------
      8     x: number
      9         Double-precision floating-point number.
     10 
     11     Returns
     12     -------
     13     out: float
     14         Nearest single-precision floating-point number.
     15 
     16     Examples
     17     --------
     18     > var y = {{alias}}( 1.337 )
     19     1.3370000123977661
     20 
     21     See Also
     22     --------