Or login with:
| doublePDF( | double | t | |
| double | k | ) |

#include <stdio.h> #include <codecogs/stats/dists/continuous/t/pdf.h> using namespace Stats::Dists::Continuous::T; int main() { for( double t=-2.5; t<2.5; t+=0.5 ) printf( "PDF( %1.1f ) = %f \n", t, PDF(t, 20) ); return getchar(); }
PDF( -2.5 ) = 0.022669 PDF( -2.0 ) = 0.058087 PDF( -1.5 ) = 0.128627 PDF( -1.0 ) = 0.236046 PDF( -0.5 ) = 0.345809 PDF( 0.0 ) = 0.393989 PDF( 0.5 ) = 0.345809 PDF( 1.0 ) = 0.236046 PDF( 1.5 ) = 0.128627 PDF( 2.0 ) = 0.058087
| t | the point at which to evaluate the PDF |
| k | the number of degrees of freedom of the T distribution |
Source code is available when you buy a Commercial licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.
You must login to leave a messge