#include <t.h>

Public Member Functions | |
| t_distribution (double v=1.0) | |
| double | cdf (double x) const | 
| double | inverse_cdf (double p) const | 
| double | degrees_of_freedom () const | 
| void | degrees_of_freedom (double df) | 
References:
| NUM_NAMESPACE_BEGIN t_distribution::t_distribution | ( | double |  df = 1.0           | 
          ) | 
Create a distribution with the given degrees of freedom.
| v | the degrees of freedom. | 
| df | the degrees of freedom. | 
| double t_distribution::cdf | ( | double | x | ) |  const [virtual] | 
        
The CDF for this distribution. This method returns P(X < x).
| x | the value at which the CDF is evaluated. | 
Implements continuous_distribution.
| double t_distribution::inverse_cdf | ( | double | p | ) |  const [virtual] | 
        
The inverse CDF for this distribution. This method returns x such that, P(X < x) = p.
| p | the cumulative probability. | 
Implements continuous_distribution.
| double t_distribution::degrees_of_freedom | ( | ) | const | 
Access the degrees of freedom.
| void t_distribution::degrees_of_freedom | ( | double | df | ) | 
Modify the degrees of freedom.
| df | The new degrees of freedom value. | 
 1.5.3