Copy elements from an input strided array to elements in a strided DataView.
npm install @stdlib/strided-base-write-dataviewWe believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js. The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases. When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there. To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
About stdlib...
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url]
> Copy elements from an input strided array to elements in a strided [DataView][@stdlib/array/dataview].
``bash`
npm install @stdlib/strided-base-write-dataview
`javascript`
var writeDataView = require( '@stdlib/strided-base-write-dataview' );
#### writeDataView( N, x, strideX, view, strideView, littleEndian )
Copies elements from an input strided array to elements in a strided [DataView][@stdlib/array/dataview].
`javascript
var ArrayBuffer = require( '@stdlib/array-buffer' );
var DataView = require( '@stdlib/array-dataview' );
var x = [ 1.0, 2.0, 3.0, 4.0 ];
var buf = new ArrayBuffer( 32 );
var view = new DataView( buf );
var out = writeDataView( 4, x, 1, view, 8, true );
// returns
var bool = ( out === view );
// returns true
var v = view.getFloat64( 0, true );
// returns 1.0
v = view.getFloat64( 8, true );
// returns 2.0
`
The function accepts the following arguments:
- N: number of indexed elements.
- x: input strided array.
- strideX: index increment for x.DataView
- view: output [][@stdlib/array/dataview].view
- strideView: index increment (in bytes) for .
- littleEndian: boolean indicating whether to store values in little-endian format.
The N and stride parameters determine which elements in x and view are accessed at runtime. For example, to index every other value in x and to index the first N elements of view in reverse order,
`javascript
var ArrayBuffer = require( '@stdlib/array-buffer' );
var DataView = require( '@stdlib/array-dataview' );
var x = [ 1.0, 0.0, 2.0, 0.0, 3.0, 0.0, 4.0, 0.0 ];
var buf = new ArrayBuffer( 64 );
var view = new DataView( buf );
var out = writeDataView( 4, x, 2, view, -8, true );
// returns
var bool = ( out === view );
// returns true
var v = view.getFloat64( 0, true );
// returns 4.0
v = view.getFloat64( 8, true );
// returns 3.0
`
Note that indexing is relative to the first index. To introduce an offset, use typed array views.
`javascript
var ArrayBuffer = require( '@stdlib/array-buffer' );
var DataView = require( '@stdlib/array-dataview' );
var Float32Array = require( '@stdlib/array-float32' );
// Initial array:
var x0 = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
// Create an offset view:
var x1 = new Float32Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // start at 2nd element
// Create an output DataView:
var buf = new ArrayBuffer( 64 );
var view = new DataView( buf );
var out = writeDataView( 4, x1, 1, view, 8, true );
// returns
var bool = ( out === view );
// returns true
var v = view.getFloat32( 0, true );
// returns 2.0
v = view.getFloat32( 8, true );
// returns 3.0
`
#### writeDataView.ndarray( N, x, strideX, offsetX, view, strideView, offsetView, littleEndian )
Copies elements from an input strided array to elements in a strided [DataView][@stdlib/array/dataview] using alternative indexing semantics.
`javascript
var ArrayBuffer = require( '@stdlib/array-buffer' );
var DataView = require( '@stdlib/array-dataview' );
var x = [ 1.0, 2.0, 3.0, 4.0 ];
var buf = new ArrayBuffer( 32 );
var view = new DataView( buf );
var out = writeDataView.ndarray( 4, x, 1, 0, view, 8, 0, true );
// returns
var bool = ( out === view );
// returns true
var v = view.getFloat64( 0, true );
// returns 1.0
`
The function accepts the following additional arguments:
- offsetX: starting index for x.view
- offsetView: starting index (in bytes) for .
While typed array views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example, to index every other value in x starting from the second value and to index the last N elements in view in reverse order,
`javascript
var ArrayBuffer = require( '@stdlib/array-buffer' );
var DataView = require( '@stdlib/array-dataview' );
var x = [ 0.0, 1.0, 0.0, 2.0, 0.0, 3.0, 0.0, 4.0 ];
var buf = new ArrayBuffer( 64 );
var view = new DataView( buf );
var out = writeDataView.ndarray( 4, x, 2, 1, view, -8, 56, true );
// returns
var bool = ( out === view );
// returns true
var v = view.getFloat64( 32, true );
// returns 4.0
v = view.getFloat64( 40, true );
// returns 3.0
`
`javascript
var ArrayBuffer = require( '@stdlib/array-buffer' );
var DataView = require( '@stdlib/array-dataview' );
var typedarray = require( '@stdlib/array-typed' );
var bytesPerElement = require( '@stdlib/ndarray-base-bytes-per-element' );
var discreteUniform = require( '@stdlib/random-array-discrete-uniform' );
var IS_LITTLE_ENDIAN = require( '@stdlib/assert-is-little-endian' );
var logEach = require( '@stdlib/console-log-each' );
var writeDataView = require( '@stdlib/strided-base-write-dataview' );
// Specify the array data type:
var dtype = 'float64';
// Resolve the number of bytes per element:
var nbytes = bytesPerElement( dtype );
// Generate an array of random numbers:
var x = discreteUniform( 10, 0, 100, {
'dtype': dtype
});
// Create a DataView:
var buf = new ArrayBuffer( x.length*nbytes );
var view = new DataView( buf );
// Copy the numbers to the DataView:
writeDataView( x.length, x, 1, view, nbytes, IS_LITTLE_ENDIAN );
// Create a view of the DataView:
var y = typedarray( view.buffer, dtype );
// Print the results:
logEach( '%d -> %d', x, y );
`
*
This package is part of [stdlib][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][stdlib], see the main project [repository][stdlib].
#### Community
[![Chat][chat-image]][chat-url]
---
See [LICENSE][stdlib-license].
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/strided-base-write-dataview.svg
[npm-url]: https://npmjs.org/package/@stdlib/strided-base-write-dataview
[test-image]: https://github.com/stdlib-js/strided-base-write-dataview/actions/workflows/test.yml/badge.svg?branch=v0.1.1
[test-url]: https://github.com/stdlib-js/strided-base-write-dataview/actions/workflows/test.yml?query=branch:v0.1.1
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/strided-base-write-dataview/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/strided-base-write-dataview?branch=main
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
[chat-url]: https://stdlib.zulipchat.com
[stdlib]: https://github.com/stdlib-js/stdlib
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
[umd]: https://github.com/umdjs/umd
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
[deno-url]: https://github.com/stdlib-js/strided-base-write-dataview/tree/deno
[deno-readme]: https://github.com/stdlib-js/strided-base-write-dataview/blob/deno/README.md
[umd-url]: https://github.com/stdlib-js/strided-base-write-dataview/tree/umd
[umd-readme]: https://github.com/stdlib-js/strided-base-write-dataview/blob/umd/README.md
[esm-url]: https://github.com/stdlib-js/strided-base-write-dataview/tree/esm
[esm-readme]: https://github.com/stdlib-js/strided-base-write-dataview/blob/esm/README.md
[branches-url]: https://github.com/stdlib-js/strided-base-write-dataview/blob/main/branches.md
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/strided-base-write-dataview/main/LICENSE
[@stdlib/array/dataview]: https://www.npmjs.com/package/@stdlib/array-dataview