Skip to content

Latest commit

 

History

History

int16

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Int16Array

Typed array constructor which returns a typed array representing an array of twos-complement 16-bit signed integers in the platform byte order.

Usage

var Int16Array = require( '@stdlib/array/int16' );

Int16Array()

A typed array constructor which returns a typed array representing an array of twos-complement 16-bit signed integers in the platform byte order.

var arr = new Int16Array();
// returns <Int16Array>

Int16Array( length )

Returns a typed array having a specified length.

var arr = new Int16Array( 5 );
// returns <Int16Array>[ 0, 0, 0, 0, 0 ]

Int16Array( typedarray )

Creates a typed array from another typed array.

var Float32Array = require( '@stdlib/array/float32' );

var arr1 = new Float32Array( [ 5.0, 5.0, 5.0 ] );
var arr2 = new Int16Array( arr1 );
// returns <Int16Array>[ 5, 5, 5 ]

Int16Array( obj )

Creates a typed array from an array-like object or iterable.

var arr = new Int16Array( [ 5.0, 5.0, 5.0 ] );
// returns <Int16Array>[ 5, 5, 5 ]

Int16Array( buffer[, byteOffset[, length]] )

Returns a typed array view of an ArrayBuffer.

var ArrayBuffer = require( '@stdlib/array/buffer' );

var buf = new ArrayBuffer( 8 );
var arr = new Int16Array( buf, 0, 4 );
// returns <Int16Array>[ 0, 0, 0, 0 ]

Properties

Int16Array.BYTES_PER_ELEMENT

Number of bytes per view element.

var nbytes = Int16Array.BYTES_PER_ELEMENT;
// returns 2

Int16Array.name

Typed array constructor name.

var str = Int16Array.name;
// returns 'Int16Array'

Int16Array.prototype.buffer

Read-only property which returns the ArrayBuffer referenced by the typed array.

var arr = new Int16Array( 5 );
var buf = arr.buffer;
// returns <ArrayBuffer>

Int16Array.prototype.byteLength

Read-only property which returns the length (in bytes) of the typed array.

var arr = new Int16Array( 5 );
var byteLength = arr.byteLength;
// returns 10

Int16Array.prototype.byteOffset

Read-only property which returns the offset (in bytes) of the typed array from the start of its ArrayBuffer.

var arr = new Int16Array( 5 );
var byteOffset = arr.byteOffset;
// returns 0

Int16Array.prototype.length

Read-only property which returns the number of view elements.

var arr = new Int16Array( 5 );
var len = arr.length;
// returns 5

Methods

TODO: add methods


Examples

var randu = require( '@stdlib/random/base/randu' );
var round = require( '@stdlib/math/base/special/round' );
var ctor = require( '@stdlib/array/int16' );

var arr;
var i;

arr = new ctor( 10 );
for ( i = 0; i < arr.length; i++ ) {
    arr[ i ] = round( randu()*100.0 );
}
console.log( arr );