time-to-botec

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

repl.txt (648B)


      1 
      2 {{alias}}( a, b, c )
      3     Returns the standard deviation of a triangular distribution.
      4 
      5     If provided `NaN` as any argument, the function returns `NaN`.
      6 
      7     If the condition `a <= c <= b` is not satisfied, the function returns `NaN`.
      8 
      9     Parameters
     10     ----------
     11     a: number
     12         Minimum support.
     13 
     14     b: number
     15         Maximum support.
     16 
     17     c: number
     18         Mode.
     19 
     20     Returns
     21     -------
     22     out: number
     23         Standard deviation.
     24 
     25     Examples
     26     --------
     27     > var v = {{alias}}( 0.0, 1.0, 0.8 )
     28     ~0.216
     29     > v = {{alias}}( 4.0, 12.0, 5.0 )
     30     ~1.78
     31     > v = {{alias}}( 2.0, 8.0, 5.0 )
     32     ~1.225
     33 
     34     See Also
     35     --------
     36