diff --git a/lib/node_modules/@stdlib/stats/base/dists/t/pdf/README.md b/lib/node_modules/@stdlib/stats/base/dists/t/pdf/README.md
index 11934002a59d..65f666102781 100644
--- a/lib/node_modules/@stdlib/stats/base/dists/t/pdf/README.md
+++ b/lib/node_modules/@stdlib/stats/base/dists/t/pdf/README.md
@@ -132,6 +132,101 @@ for ( i = 0; i < 10; i++ ) {
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/stats/base/dists/t/pdf.h"
+```
+
+#### stdlib_base_dists_t_pdf( x, v )
+
+Evaluates the probability density function (PDF) for a Student's t distribution with degrees of freedom `v` at a value `x`.
+
+```c
+double y = pdf( 0.3, 4.0 );
+returns ~0.355
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] double` input value.
+- **v**: `[in] double` degrees of freedom.
+
+```c
+double stdlib_base_dists_t_pdf( const double x, const double v );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/stats/base/dists/t/pdf.h"
+#include
+#include
+
+static double random_uniform( const double min, const double max ) {
+ double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
+ return min + ( v*(max-min) );
+}
+
+int main( void ) {
+ double x;
+ double v;
+ double y;
+ int i;
+
+ for ( i = 0; i < 25; i++ ) {
+ x = random_uniform( 1.0, 100.0 );
+ v = random_uniform( 1.0, 100.0 );
+ y = stdlib_base_dists_t_pdf( x, v );
+ printf( "x: %lf v: %lf, mean: %lf\n", x, v, y );
+ }
+}
+```
+
+
+
+
+
+
+
+
+