time-to-botec

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

repl.txt (481B)


      1 
      2 {{alias}}( k )
      3     Returns the standard deviation of a chi-squared distribution.
      4 
      5     If provided `NaN` as any argument, the function returns `NaN`.
      6 
      7     If provided `k < 0`, the function returns `NaN`.
      8 
      9     Parameters
     10     ----------
     11     k: number
     12         Degrees of freedom.
     13 
     14     Returns
     15     -------
     16     out: number
     17         Standard deviation.
     18 
     19     Examples
     20     --------
     21     > var v = {{alias}}( 11.0 )
     22     ~4.69
     23     > v = {{alias}}( 1.5 )
     24     ~1.732
     25 
     26     See Also
     27     --------
     28