diff --git a/lib/node_modules/@stdlib/math/base/special/cot/README.md b/lib/node_modules/@stdlib/math/base/special/cot/README.md
index 814d23839ba8..cb710799146a 100644
--- a/lib/node_modules/@stdlib/math/base/special/cot/README.md
+++ b/lib/node_modules/@stdlib/math/base/special/cot/README.md
@@ -82,6 +82,94 @@ for ( i = 0; i < x.length; i++ ) {
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/math/base/special/cot.h"
+```
+
+#### stdlib_base_cot( x )
+
+Evaluates the [cotangent][trigonometric-functions] of `x` (in radians).
+
+```c
+double out = stdlib_base_cot( 0.0 );
+// returns Infinity
+
+out = stdlib_base_cot( 3.141592653589793 / 2.0 );
+// returns ~0.0
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] double` input value.
+
+```c
+double stdlib_base_cot( const double x );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/math/base/special/cot.h"
+#include
+
+int main( void ) {
+ const double x[] = { 0.523, 0.785, 1.047, 3.14 };
+
+ double y;
+ int i;
+ for ( i = 0; i < 4; i++ ) {
+ y = stdlib_base_cot( x[ i ] );
+ printf( "cot(%lf) = %lf\n", x[ i ], y );
+ }
+}
+```
+
+
+
+
+
+
+
+
+