time-to-botec

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

repl.txt (613B)


      1 
      2 {{alias}}( a, b )
      3     Returns the standard deviation of a Kumaraswamy's double bounded
      4     distribution.
      5 
      6     If provided `NaN` as any argument, the function returns `NaN`.
      7 
      8     If `a <= 0` or `b <= 0`, the function returns `NaN`.
      9 
     10     Parameters
     11     ----------
     12     a: number
     13         First shape parameter.
     14 
     15     b: number
     16         Second shape parameter.
     17 
     18     Returns
     19     -------
     20     out: number
     21         Standard deviation.
     22 
     23     Examples
     24     --------
     25     > var v = {{alias}}( 1.0, 1.0 )
     26     ~0.289
     27     > v = {{alias}}( 4.0, 12.0 )
     28     ~0.13
     29     > v = {{alias}}( 16.0, 8.0 )
     30     ~0.062
     31 
     32     See Also
     33     --------
     34