Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jan 21, 2024
1 parent 4ed9c9b commit 33b8e5d
Show file tree
Hide file tree
Showing 15 changed files with 1,595 additions and 9 deletions.
4 changes: 2 additions & 2 deletions base/at4d/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ import at4d = require( './index' );
at4d( false, 0, 0, 0, 0 ); // $ExpectError
at4d( null, 0, 0, 0, 0 ); // $ExpectError
at4d( void 0, 0, 0, 0, 0 ); // $ExpectError
at4d( {}, 0, 0, 0 ); // $ExpectError
at4d( ( x: number ): number => x, 0, 0, 0, 0, 0 ); // $ExpectError
at4d( {}, 0, 0, 0, 0 ); // $ExpectError
at4d( ( x: number ): number => x, 0, 0, 0, 0 ); // $ExpectError
}

// The compiler throws an error if the function is provided a second argument which is not a number...
Expand Down
4 changes: 2 additions & 2 deletions base/at5d/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ import at5d = require( './index' );
at5d( false, 0, 0, 0, 0, 0 ); // $ExpectError
at5d( null, 0, 0, 0, 0, 0 ); // $ExpectError
at5d( void 0, 0, 0, 0, 0, 0 ); // $ExpectError
at5d( {}, 0, 0, 0 ); // $ExpectError
at5d( ( x: number ): number => x, 0, 0, 0, 0, 0, 0 ); // $ExpectError
at5d( {}, 0, 0, 0, 0, 0 ); // $ExpectError
at5d( ( x: number ): number => x, 0, 0, 0, 0, 0 ); // $ExpectError
}

// The compiler throws an error if the function is provided a second argument which is not a number...
Expand Down
144 changes: 144 additions & 0 deletions base/atnd/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
<!--
@license Apache-2.0
Copyright (c) 2024 The Stdlib Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

# atnd

> Return an element from an n-dimensional nested array.
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->

<section class="intro">

</section>

<!-- /.intro -->

<!-- Package usage documentation. -->

<section class="usage">

## Usage

```javascript
var atnd = require( '@stdlib/array/base/atnd' );
```

#### atnd( x, i0\[, ...indices] )

Return an element from an n-dimensional nested array.

```javascript
var x = [ [ 1, 2 ], [ 3, 4 ] ];

var out = atnd( x, 0, 1 );
// returns 2

out = atnd( x, 1, 0 );
// returns 3
```

The function accepts the following arguments:

- **x**: five-dimensional nested input array.
- **i0**: first dimension index.
- **indices**: dimension indices.

</section>

<!-- /.usage -->

<!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="notes">

## Notes

- Negative indices are resolved relative to the last element along the respective dimension, with the last element corresponding to `-1`.
- If provided out-of-bounds indices, the function always returns `undefined`.

</section>

<!-- /.notes -->

<!-- Package usage examples. -->

<section class="examples">

## Examples

<!-- eslint no-undef: "error" -->

```javascript
var papply = require( '@stdlib/utils/papply' );
var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ).factory;
var filled2dBy = require( '@stdlib/array/base/filled2d-by' );
var binary2d = require( '@stdlib/array/base/binary2d' );
var zeros2d = require( '@stdlib/array/base/zeros2d' );
var atnd = require( '@stdlib/array/base/atnd' );

var shape = [ 5, 5 ];

// Define a nested input array:
var x = filled2dBy( shape, discreteUniform( -100, 100 ) );
console.log( x );

// Define arrays containing random index values:
var i0 = filled2dBy( shape, discreteUniform( -shape[0], shape[0]-1 ) );
console.log( i0 );

var i1 = filled2dBy( shape, discreteUniform( -shape[1], shape[1]-1 ) );
console.log( i1 );

// Define an output array:
var out = zeros2d( shape );
console.log( out );

// Fill the output array with randomly selected values from the input array:
binary2d( [ i0, i1, out ], shape, papply( atnd, x ) );
console.log( out );
```

</section>

<!-- /.examples -->

<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="references">

</section>

<!-- /.references -->

<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

</section>

<!-- /.related -->

<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="links">

</section>

<!-- /.links -->
151 changes: 151 additions & 0 deletions base/atnd/benchmark/benchmark.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2024 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

// MODULES //

var bench = require( '@stdlib/bench' );
var uniform = require( '@stdlib/random/base/uniform' ).factory;
var filledndBy = require( './../../../base/fillednd-by' );
var isnan = require( '@stdlib/math/base/assert/is-nan' );
var pkg = require( './../package.json' ).name;
var atnd = require( './../lib' );


// MAIN //

bench( pkg+':ndims=1', function benchmark( b ) {
var x;
var v;
var i;
var j;

x = filledndBy( [ 10 ], uniform( 0.0, 10.0 ) );

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
j = ( i%20 ) - 10;
v = atnd( x, j );
if ( v !== v ) {
b.fail( 'should not return NaN' );
}
}
b.toc();
if ( isnan( v ) ) {
b.fail( 'should not return NaN' );
}
b.pass( 'benchmark finished' );
b.end();
});

bench( pkg+':ndims=2', function benchmark( b ) {
var x;
var v;
var i;
var j;

x = filledndBy( [ 10, 10 ], uniform( 0.0, 10.0 ) );

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
j = ( i%20 ) - 10;
v = atnd( x, j, j );
if ( v !== v ) {
b.fail( 'should not return NaN' );
}
}
b.toc();
if ( isnan( v ) ) {
b.fail( 'should not return NaN' );
}
b.pass( 'benchmark finished' );
b.end();
});

bench( pkg+':ndims=3', function benchmark( b ) {
var x;
var v;
var i;
var j;

x = filledndBy( [ 10, 10, 10 ], uniform( 0.0, 10.0 ) );

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
j = ( i%20 ) - 10;
v = atnd( x, j, j, j );
if ( v !== v ) {
b.fail( 'should not return NaN' );
}
}
b.toc();
if ( isnan( v ) ) {
b.fail( 'should not return NaN' );
}
b.pass( 'benchmark finished' );
b.end();
});

bench( pkg+':ndims=4', function benchmark( b ) {
var x;
var v;
var i;
var j;

x = filledndBy( [ 10, 10, 10, 10 ], uniform( 0.0, 10.0 ) );

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
j = ( i%20 ) - 10;
v = atnd( x, j, j, j, j );
if ( v !== v ) {
b.fail( 'should not return NaN' );
}
}
b.toc();
if ( isnan( v ) ) {
b.fail( 'should not return NaN' );
}
b.pass( 'benchmark finished' );
b.end();
});

bench( pkg+':ndims=5', function benchmark( b ) {
var x;
var v;
var i;
var j;

x = filledndBy( [ 10, 10, 10, 10, 10 ], uniform( 0.0, 10.0 ) );

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
j = ( i%20 ) - 10;
v = atnd( x, j, j, j, j, j );
if ( v !== v ) {
b.fail( 'should not return NaN' );
}
}
b.toc();
if ( isnan( v ) ) {
b.fail( 'should not return NaN' );
}
b.pass( 'benchmark finished' );
b.end();
});
36 changes: 36 additions & 0 deletions base/atnd/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

{{alias}}( x, i0[, ...indices] )
Returns an element from an n-dimensional nested array.

Negative indices are resolved relative to the last element along the
respective dimension, with the last element corresponding to `-1`.

If provided out-of-bounds indices, the function always returns `undefined`.

Parameters
----------
x: ArrayLikeObject
Input nested array.

i0: integer
First dimension index.

indices: ...integer (optional)
Dimension indices.

Returns
-------
out: any
Element value.

Examples
--------
> var x = [ [ 1, 2 ], [ 3, 4 ] ];
> {{alias}}( x, 0, 1 )
2
> {{alias}}( x, 1, 0 )
3

See Also
--------

Loading

0 comments on commit 33b8e5d

Please sign in to comment.