Apply a one-dimensional strided array function to a list of specified dimensions in an ndarray.
npm install @stdlib/ndarray-base-nullary-strided1dWe 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]
> Apply a one-dimensional strided array function to a list of specified dimensions in an ndarray.
``bash`
npm install @stdlib/ndarray-base-nullary-strided1d
`javascript`
var nullaryStrided1d = require( '@stdlib/ndarray-base-nullary-strided1d' );
#### nullaryStrided1d( fcn, arrays, dims\[, options] )
Applies a one-dimensional strided array function to a list of specified dimensions in an ndarray.
`javascript
var ndarray2array = require( '@stdlib/ndarray-base-to-array' );
var getStride = require( '@stdlib/ndarray-base-stride' );
var getOffset = require( '@stdlib/ndarray-base-offset' );
var getData = require( '@stdlib/ndarray-base-data-buffer' );
var numelDimension = require( '@stdlib/ndarray-base-numel-dimension' );
var ndarraylike2scalar = require( '@stdlib/ndarray-base-ndarraylike2scalar' );
var gsorthp = require( '@stdlib/blas-ext-base-gsorthp' ).ndarray;
function wrapper( arrays ) {
var x = arrays[ 0 ];
var o = arrays[ 1 ];
return gsorthp( numelDimension( x, 0 ), ndarraylike2scalar( o ), getData( x ), getStride( x, 0 ), getOffset( x ) );
}
// Create a data buffer:
var xbuf = [ 12.0, 11.0, 10.0, 9.0, 8.0, 7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0 ];
// Define an array shape:
var xsh = [ 1, 3, 2, 2 ];
// Define the array strides:
var sx = [ 12, 4, 2, 1 ];
// Define the index offset:
var ox = 0;
// Create an ndarray-like object:
var x = {
'dtype': 'generic',
'data': xbuf,
'shape': xsh,
'strides': sx,
'offset': ox,
'order': 'row-major'
};
// Create an ndarray-like object for the sort order:
var sortOrder = {
'dtype': 'generic',
'data': [ 1.0 ],
'shape': [ 1, 3 ],
'strides': [ 0, 0 ],
'offset': 0,
'order': 'row-major'
};
// Apply strided function:
nullaryStrided1d( wrapper, [ x, sortOrder ], [ 2, 3 ] );
var arr = ndarray2array( x.data, x.shape, x.strides, x.offset, x.order );
// returns [ [ [ [ 9.0, 10.0 ], [ 11.0, 12.0 ] ], [ [ 5.0, 6.0 ], [ 7.0, 8.0 ] ], [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] ] ]
`
The function accepts the following arguments:
- fcn: function which will be applied to a one-dimensional subarray.
- arrays: array-like object containing an ndarray followed by any additional ndarray arguments.
- dims: list of dimensions to which to apply a strided array function.
- options: function options which are passed through to fcn (_optional_).
Each provided ndarray should be an object with the following properties:
- dtype: data type.
- data: data buffer.
- shape: dimensions.
- strides: stride lengths.
- offset: index offset.
- order: specifies whether an ndarray is row-major (C-style) or column major (Fortran-style).
#### TODO: document factory method
- Any additional ndarray arguments are expected to have the same dimensions as the loop dimensions of the first provided ndarray. When calling the strided array function, any additional ndarray arguments are provided as zero-dimensional ndarray-like objects.
- The strided array function is expected to have the following signature:
`text`
fcn( arrays[, options] )
where
- arrays: array containing a one-dimensional subarray of the first provided ndarray and any additional ndarray arguments as zero-dimensional ndarrays.
- options: function options (_optional_).
- The function iterates over ndarray elements according to the memory layout of the first provided ndarray.
- For very high-dimensional ndarrays which are non-contiguous, one should consider copying the underlying data to contiguous memory before performing an operation in order to achieve better performance.
`javascript
var discreteUniform = require( '@stdlib/random-array-discrete-uniform' );
var ndarray2array = require( '@stdlib/ndarray-base-to-array' );
var numelDimension = require( '@stdlib/ndarray-base-numel-dimension' );
var getData = require( '@stdlib/ndarray-base-data-buffer' );
var getStride = require( '@stdlib/ndarray-base-stride' );
var getOffset = require( '@stdlib/ndarray-base-offset' );
var ndarraylike2scalar = require( '@stdlib/ndarray-base-ndarraylike2scalar' );
var gsorthp = require( '@stdlib/blas-ext-base-gsorthp' ).ndarray;
var nullaryStrided1d = require( '@stdlib/ndarray-base-nullary-strided1d' );
function wrapper( arrays ) {
var x = arrays[ 0 ];
var o = arrays[ 1 ];
return gsorthp( numelDimension( x, 0 ), ndarraylike2scalar( o ), getData( x ), getStride( x, 0 ), getOffset( x ) );
}
var N = 10;
var x = {
'dtype': 'generic',
'data': discreteUniform( N, -5, 5, {
'dtype': 'generic'
}),
'shape': [ 1, 5, 2 ],
'strides': [ 10, 2, 1 ],
'offset': 0,
'order': 'row-major'
};
console.log( ndarray2array( x.data, x.shape, x.strides, x.offset, x.order ) );
var sortOrder = {
'dtype': 'generic',
'data': [ 1.0 ],
'shape': [ 2 ],
'strides': [ 0, 0 ],
'offset': 0,
'order': 'row-major'
};
nullaryStrided1d( wrapper, [ x, sortOrder ], [ 0, 1 ] );
console.log( ndarray2array( x.data, x.shape, x.strides, x.offset, x.order ) );
`
*
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/ndarray-base-nullary-strided1d.svg
[npm-url]: https://npmjs.org/package/@stdlib/ndarray-base-nullary-strided1d
[test-image]: https://github.com/stdlib-js/ndarray-base-nullary-strided1d/actions/workflows/test.yml/badge.svg?branch=v0.1.1
[test-url]: https://github.com/stdlib-js/ndarray-base-nullary-strided1d/actions/workflows/test.yml?query=branch:v0.1.1
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/ndarray-base-nullary-strided1d/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/ndarray-base-nullary-strided1d?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/ndarray-base-nullary-strided1d/tree/deno
[deno-readme]: https://github.com/stdlib-js/ndarray-base-nullary-strided1d/blob/deno/README.md
[umd-url]: https://github.com/stdlib-js/ndarray-base-nullary-strided1d/tree/umd
[umd-readme]: https://github.com/stdlib-js/ndarray-base-nullary-strided1d/blob/umd/README.md
[esm-url]: https://github.com/stdlib-js/ndarray-base-nullary-strided1d/tree/esm
[esm-readme]: https://github.com/stdlib-js/ndarray-base-nullary-strided1d/blob/esm/README.md
[branches-url]: https://github.com/stdlib-js/ndarray-base-nullary-strided1d/blob/main/branches.md
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/ndarray-base-nullary-strided1d/main/LICENSE