@stdlib/strided-napi-zmap
v0.2.2
Published
C API for registering a Node-API module exporting a strided array interface for applying a unary callback to a double-precision complex floating-point strided input array and assigning results to a double-precision complex floating-point strided output ar
Downloads
14
Readme
zmap
C API for registering a Node-API module exporting a strided array interface for applying a unary callback to a double-precision complex floating-point strided input array and assigning results to a double-precision complex floating-point strided output array.
Installation
npm install @stdlib/strided-napi-zmap
Usage
var headerDir = require( '@stdlib/strided-napi-zmap' );
headerDir
Absolute file path for the directory containing header files for C APIs.
var dir = headerDir;
// returns <string>
Examples
var headerDir = require( '@stdlib/strided-napi-zmap' );
console.log( headerDir );
// => <string>
C APIs
Usage
#include "stdlib/strided/napi/zmap.h"
stdlib_strided_napi_zmap( env, info, fcn )
Invokes a strided array interface which applies a unary callback to a double-precision complex floating-point strided input array and assigns results to a double-precision complex floating-point strided output array.
#include <node_api.h>
#include <complex.h>
// ...
static double complex cidentity( const double complex z ) {
return z;
}
// ...
/**
* Receives JavaScript callback invocation data.
*
* @param env environment under which the function is invoked
* @param info callback data
* @return Node-API value
*/
napi_value addon( napi_env env, napi_callback_info info ) {
stdlib_strided_napi_zmap( env, info, cidentity );
return NULL;
}
// ...
The function accepts the following arguments:
- env:
[in] napi_env
environment under which the function is invoked. - info:
[in] napi_callback_info
callback data. - fcn:
[in] double complex (*fcn)( double complex )
unary callback.
void stdlib_strided_napi_zmap( napi_env env, napi_callback_info info, double complex (*fcn)( double complex ) );
STDLIB_STRIDED_NAPI_MODULE_ZMAP( clbk )
Macro for registering a Node-API module exporting a strided array interface for applying a unary callback to a double-precision complex floating-point strided input array and assigning results to a double-precision complex floating-point strided output array.
#include <complex.h>
static double complex scale( const double complex z ) {
double complex re = creal( z );
double complex im = cimag( z );
return ( re*10.0 ) + ( im*10.0 )*I;
}
// ...
// Register a Node-API module:
STDLIB_STRIDED_NAPI_MODULE_ZMAP( scale )
The macro expects the following arguments:
- clbk:
double complex (*fcn)( double complex )
unary callback.
When used, this macro should be used instead of NAPI_MODULE
. The macro includes NAPI_MODULE
, thus ensuring Node-API module registration.
Notes
The function expects that the callback
info
argument provides access to the following JavaScript arguments:- N: number of indexed elements.
- X: input
Float64Array
view of aComplex128Array
. - strideX: stride length for the input
Complex128Array
. - Y: destination
Float64Array
view of aComplex128Array
. - strideY: stride length for the destination
Complex128Array
.
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.