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.
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
.