• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/math/

Lines Matching defs:statistics

5 #    Part of "math::statistics"
12 # ::math::statistics --
15 namespace eval ::math::statistics {
50 proc ::math::statistics::pdf-normal { mean stdev x } {
77 proc ::math::statistics::pdf-uniform { pmin pmax x } {
104 proc ::math::statistics::pdf-exponential { mean x } {
136 proc ::math::statistics::cdf-normal { mean stdev x } {
166 proc ::math::statistics::cdf-students-t { degrees x } {
193 proc ::math::statistics::cdf-uniform { pmin pmax x } {
220 proc ::math::statistics::cdf-exponential { mean x } {
252 proc ::math::statistics::Inverse-cdf-uniform { pmin pmax prob } {
284 proc ::math::statistics::Inverse-cdf-exponential { mean prob } {
314 proc ::math::statistics::Inverse-cdf-normal { mean stdev prob } {
369 proc ::math::statistics::Initialise-cdf-normal { } {
408 proc ::math::statistics::random-uniform { pmin pmax number } {
436 proc ::math::statistics::random-exponential { mean number } {
470 proc ::math::statistics::random-normal { mean stdev number } {
532 proc ::math::statistics::Cdf-toms322 { m n x } {
617 proc ::math::statistics::Inverse-cdf-toms322 { m n prob } {
681 proc ::math::statistics::HistogramMake { cdf-values number } {
716 proc ::math::statistics::histogram-uniform { min max limits number } {
756 proc ::math::statistics::incompleteGamma {x p {tol 1.0e-9}} {
775 return [::math::statistics::pnorm_quicker $pn1]
862 proc ::math::statistics::pdf-gamma { alpha beta x } {
892 proc ::math::statistics::pdf-poisson { mu k } {
911 proc ::math::statistics::pdf-chisquare { df x } {
934 proc ::math::statistics::pdf-students-t { degrees x } {
965 proc ::math::statistics::pdf-beta { a b x } {
1012 proc ::math::statistics::incompleteBeta {a b x {tol 1.0e-9}} {
1058 proc ::math::statistics::beta_cont_frac {a b x {tol 1.0e-9}} {
1132 proc ::math::statistics::cdf-gamma { alpha beta x } {
1154 proc ::math::statistics::cdf-poisson { mu x } {
1172 proc ::math::statistics::cdf-chisquare { df x } {
1196 proc ::math::statistics::cdf-beta { a b x } {
1219 proc ::math::statistics::random-gamma {alpha beta number} {
1260 proc ::math::statistics::random-poisson {mu number} {
1282 proc ::math::statistics::random-chisquare { df number } {
1308 proc ::math::statistics::random-students-t { degrees number } {
1352 proc ::math::statistics::random-beta { a b number } {
1382 proc ::math::statistics::Randp_invert {mu number} {
1427 proc ::math::statistics::Randp_PTRS {mu number} {
1482 set prob [::math::statistics::Cdf-toms322 1 5000 [expr {$z*$z}]]
1488 puts "$p - [::math::statistics::Inverse-cdf-normal 0.0 1.0 $p]"
1491 set rndvars [::math::statistics::random-normal 1.0 2.0 20]
1494 set rndvars [::math::statistics::random-uniform 1.0 2.0 20]
1497 set rndvars [::math::statistics::random-exponential 2.0 20]