From c5c7c8d71451b489125439dd344498c01e048d8d Mon Sep 17 00:00:00 2001 From: GUNJ JOSHI Date: Mon, 17 Jun 2024 10:45:45 +0530 Subject: [PATCH] feat: add C implementation for math/base/special/hacovercos --- .../math/base/special/hacovercos/README.md | 88 +++++++ .../hacovercos/benchmark/benchmark.native.js | 60 +++++ .../hacovercos/benchmark/c/native/Makefile | 146 ++++++++++++ .../hacovercos/benchmark/c/native/benchmark.c | 136 +++++++++++ .../math/base/special/hacovercos/binding.gyp | 170 ++++++++++++++ .../special/hacovercos/examples/c/Makefile | 146 ++++++++++++ .../special/hacovercos/examples/c/example.c | 31 +++ .../math/base/special/hacovercos/include.gypi | 53 +++++ .../stdlib/math/base/special/hacovercos.h | 41 ++++ .../base/special/hacovercos/lib/native.js | 58 +++++ .../base/special/hacovercos/manifest.json | 72 ++++++ .../math/base/special/hacovercos/src/Makefile | 70 ++++++ .../math/base/special/hacovercos/src/addon.c | 22 ++ .../math/base/special/hacovercos/src/main.c | 34 +++ .../special/hacovercos/test/test.native.js | 219 ++++++++++++++++++ 15 files changed, 1346 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/benchmark/benchmark.native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/benchmark/c/native/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/benchmark/c/native/benchmark.c create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/binding.gyp create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/examples/c/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/examples/c/example.c create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/include.gypi create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/include/stdlib/math/base/special/hacovercos.h create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/lib/native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/manifest.json create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/src/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/src/addon.c create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/src/main.c create mode 100644 lib/node_modules/@stdlib/math/base/special/hacovercos/test/test.native.js diff --git a/lib/node_modules/@stdlib/math/base/special/hacovercos/README.md b/lib/node_modules/@stdlib/math/base/special/hacovercos/README.md index ddfa90818ccb..d934f980a1ba 100644 --- a/lib/node_modules/@stdlib/math/base/special/hacovercos/README.md +++ b/lib/node_modules/@stdlib/math/base/special/hacovercos/README.md @@ -93,6 +93,94 @@ for ( i = 0; i < x.length; i++ ) { + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/hacovercos.h" +``` + +#### stdlib_base_hacovercos( x ) + +Computes the half-value [coversed cosine][coversed-cosine] (in radians). + +```c +double out = stdlib_base_hacovercos( 0.0 ); +// returns 0.5 + +out = stdlib_base_hacovercos( 3.141592653589793 / 2.0 ); +// returns 1.0 +``` + +The function accepts the following arguments: + +- **x**: `[in] double` input value. + +```c +double stdlib_base_hacovercos( const double x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/hacovercos.h" +#include + +int main( void ) { + const double x[] = { 0.0, 0.523, 0.785, 1.047, 3.14 }; + + double y; + int i; + for ( i = 0; i < 5; i++ ) { + y = stdlib_base_hacovercos( x[ i ] ); + printf( "hacovercos(%lf) = %lf\n", x[ i ], y ); + } +} +``` + +
+ + + +
+ + +