diff --git a/lib/node_modules/@stdlib/math/base/special/trunc10/README.md b/lib/node_modules/@stdlib/math/base/special/trunc10/README.md index 19ed12b92be7..34b488331e3f 100644 --- a/lib/node_modules/@stdlib/math/base/special/trunc10/README.md +++ b/lib/node_modules/@stdlib/math/base/special/trunc10/README.md @@ -116,6 +116,91 @@ for ( i = 0; i < 100; i++ ) { + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/trunc10.h" +``` + +#### stdlib_base_trunc10( x ) + +Rounds a `numeric` value to the nearest power of 10 toward zero. + +```c +double y = stdlib_base_trunc10( -4.2 ); +// returns -1.0 +``` + +The function accepts the following arguments: + +- **x**: `[in] double` input value. + +```c +double stdlib_base_trunc10( const double x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/trunc10.h" +#include + +int main( void ) { + const double x[] = { 3.14, -3.14, 0.0, 0.0 / 0.0 }; + + double y; + int i; + for ( i = 0; i < 4; i++ ) { + y = stdlib_base_trunc10( x[ i ] ); + printf( "trunc10(%lf) = %lf\n", x[ i ], y ); + } +} +``` + +
+ + + +
+ + +