diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 68cca7700..0ad498e65 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -34,6 +34,7 @@ Justin Dennison Karthik Prakash <116057817+skoriop@users.noreply.github.com> Khaldon Lovelin <100030865+lovelindhoni@users.noreply.github.com> +Manik Sharma Marcus Fantham Matt Cochrane Mihir Pandit <129577900+MSP20086@users.noreply.github.com> diff --git a/base/special/asec/README.md b/base/special/asec/README.md index b0998693b..0dbbf0399 100644 --- a/base/special/asec/README.md +++ b/base/special/asec/README.md @@ -81,6 +81,91 @@ for ( i = 0; i < x.length; i++ ) { + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/asec.h" +``` + +#### stdlib_base_asec( x ) + +Computes the [inverse (arc) secant][arcsecant] of `x`. + +```c +double out = stdlib_base_asec( 2.0 ); +// returns ~1.0472 +``` + +The function accepts the following arguments: + +- **x**: `[in] double` input value. + +```c +double stdlib_base_asec( const double x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/asec.h" +#include + +int main( void ) { + const double x[] = { -5.0, -3.89, -2.78, -1.67, -0.56, 0.56, 1.67, 2.78, 3.89, 5.0 }; + + double v; + int i; + for ( i = 0; i < 10; i++ ) { + v = stdlib_base_asec( x[ i ] ); + printf( "asec(%lf) = %lf\n", x[ i ], v ); + } +} +``` + +
+ + + +
+ + +