@stdlib/number-uint16-base-identity
v0.1.1
Published
Evaluate the identity function for an unsigned 16-bit integer.
Readme
Identity Function
Evaluate the identity function of an unsigned 16-bit integer.
The identity-function is defined as
for all x.
Installation
npm install @stdlib/number-uint16-base-identityUsage
var identity = require( '@stdlib/number-uint16-base-identity' );identity( x )
Evaluates the identity function for an unsigned 16-bit integer.
var v = identity( 1 );
// returns 1
v = identity( 2 );
// returns 2
v = identity( 0 );
// returns 0
v = identity( 65535 );
// returns 65535Examples
var discreteUniform = require( '@stdlib/random-array-discrete-uniform' );
var logEachMap = require( '@stdlib/console-log-each-map' );
var identity = require( '@stdlib/number-uint16-base-identity' );
var opts = {
'dtype': 'uint16'
};
// Create an array of random values:
var x = discreteUniform( 100, 0, 50, opts );
// Perform element-wise operation:
logEachMap( 'identity(%d) = %d', x, identity );C APIs
Usage
#include "stdlib/number/uint16/base/identity.h"stdlib_base_uint16_identity( x )
Evaluates the identity function for an unsigned 16-bit integer.
#include <stdint.h>
uint16_t y = stdlib_base_uint16_identity( 2 );
// returns 2The function accepts the following arguments:
- x:
[in] uint16_tinput value.
uint16_t stdlib_base_uint16_identity( const uint16_t x );Examples
#include "stdlib/number/uint16/base/identity.h"
#include <stdint.h>
#include <stdio.h>
int main( void ) {
const uint16_t x[] = { 3, 5, 10, 12 };
uint16_t y;
int i;
for ( i = 0; i < 4; i++ ) {
y = stdlib_base_uint16_identity( x[ i ] );
printf( "f(%u) = %u\n", x[ i ], y );
}
}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-2026. The Stdlib Authors.
