Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,26 +41,39 @@ var glastIndexOfTruthy = require( '@stdlib/blas/ext/base/ndarray/glast-index-of-
Returns the index of the last truthy element in a one-dimensional ndarray.

```javascript
var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
var vector = require( '@stdlib/ndarray/vector/ctor' );

var x = vector( [ 0.0, 3.0, 0.0, 2.0 ], 'generic' );

var idx = glastIndexOfTruthy( [ x ] );
var fromIndex = scalar2ndarray( 3, {
'dtype': 'generic'
});

var idx = glastIndexOfTruthy( [ x, fromIndex ] );
// returns 3
```

The function has the following parameters:

- **arrays**: array-like object containing a one-dimensional input ndarray.
- **arrays**: array-like object containing the following ndarrays:

- a one-dimensional input ndarray.
- a zero-dimensional ndarray containing the index from which to begin searching.

If the function is unable to find a truthy element, the function returns `-1`.

```javascript
var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
var vector = require( '@stdlib/ndarray/vector/ctor' );

var x = vector( [ 0.0, 0.0, 0.0, 0.0 ], 'generic' );

var idx = glastIndexOfTruthy( [ x ] );
var fromIndex = scalar2ndarray( 3, {
'dtype': 'generic'
});

var idx = glastIndexOfTruthy( [ x, fromIndex ] );
// returns -1
```

Expand All @@ -73,6 +86,7 @@ var idx = glastIndexOfTruthy( [ x ] );
## Notes

- The function treats `NaN` values as falsy.
- If a specified starting search index is negative, the function resolves the starting search index by counting backward from the last element (where `-1` refers to the last element).

</section>

Expand All @@ -86,6 +100,7 @@ var idx = glastIndexOfTruthy( [ x ] );

```javascript
var discreteUniform = require( '@stdlib/random/discrete-uniform' );
var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var glastIndexOfTruthy = require( '@stdlib/blas/ext/base/ndarray/glast-index-of-truthy' );

Expand All @@ -96,7 +111,11 @@ var opts = {
var x = discreteUniform( [ 10 ], 0, 5, opts );
console.log( ndarray2array( x ) );

var idx = glastIndexOfTruthy( [ x ] );
var fromIndex = scalar2ndarray( 9, {
'dtype': 'generic'
});

var idx = glastIndexOfTruthy( [ x, fromIndex ] );
console.log( idx );
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@
// MODULES //

var bench = require( '@stdlib/bench' );
var zeros = require( '@stdlib/ndarray/zeros' );
var isInteger = require( '@stdlib/assert/is-integer' ).isPrimitive;
var pow = require( '@stdlib/math/base/special/pow' );
var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
var zeros = require( '@stdlib/ndarray/zeros' );
var format = require( '@stdlib/string/format' );
var pkg = require( './../package.json' ).name;
var glastIndexOfTruthy = require( './../lib' );
Expand All @@ -46,7 +47,13 @@ var options = {
* @returns {Function} benchmark function
*/
function createBenchmark( len ) {
var x = zeros( [ len ], options );
var fromIndex;
var x;

x = zeros( [ len ], options );
fromIndex = scalar2ndarray( len - 1, {
'dtype': 'generic'
});
return benchmark;

/**
Expand All @@ -61,7 +68,7 @@ function createBenchmark( len ) {

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
out = glastIndexOfTruthy( [ x ] );
out = glastIndexOfTruthy( [ x, fromIndex ] );
if ( out !== out ) {
b.fail( 'should return an integer' );
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
{{alias}}( arrays )
Returns the index of the last truthy element in a one-dimensional ndarray.

If a specified starting search index is negative, the function resolves the
starting search index by counting backward from the last element (where `-1`
refers to the last element).

If unable to find a truthy element, the function returns `-1`.

Parameters
Expand All @@ -10,6 +14,8 @@
Array-like object containing the following ndarrays:

- a one-dimensional input ndarray.
- a zero-dimensional ndarray containing the index from which to begin
searching.

Returns
-------
Expand All @@ -19,7 +25,8 @@
Examples
--------
> var x = {{alias:@stdlib/ndarray/vector/ctor}}( [ 0.0, 2.0, 0.0 ], 'generic' );
> {{alias}}( [ x ] )
> var i = {{alias:@stdlib/ndarray/from-scalar}}( 2, { 'dtype': 'generic' } );
> {{alias}}( [ x, i ] )
1

See Also
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,25 @@ import { typedndarray } from '@stdlib/types/ndarray';
* - The function expects the following ndarrays:
*
* - a one-dimensional input ndarray.
* - a zero-dimensional ndarray containing the index from which to begin searching.
*
* @param arrays - array-like object containing ndarrays
* @returns index
*
* @example
* var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
* var vector = require( '@stdlib/ndarray/vector/ctor' );
*
* var x = vector( [ 0.0, 3.0, 0.0, 2.0 ], 'generic' );
*
* var v = glastIndexOfTruthy( [ x ] );
* var fromIndex = scalar2ndarray( 3, {
* 'dtype': 'generic'
* });
*
* var v = glastIndexOfTruthy( [ x, fromIndex ] );
* // returns 3
*/
declare function glastIndexOfTruthy( arrays: [ typedndarray<unknown> ] ): number;
declare function glastIndexOfTruthy( arrays: [ typedndarray<unknown>, typedndarray<number> ] ): number;


// EXPORTS //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
/* eslint-disable space-in-parens */

import zeros = require( '@stdlib/ndarray/zeros' );
import scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
import glastIndexOfTruthy = require( './index' );


Expand All @@ -29,8 +30,11 @@ import glastIndexOfTruthy = require( './index' );
const x = zeros( [ 10 ], {
'dtype': 'generic'
});
const fromIndex = scalar2ndarray( 0, {
'dtype': 'generic'
});

glastIndexOfTruthy( [ x ] ); // $ExpectType number
glastIndexOfTruthy( [ x, fromIndex ] ); // $ExpectType number
}

// The compiler throws an error if the function is provided a first argument which is not an array of ndarrays...
Expand All @@ -51,7 +55,10 @@ import glastIndexOfTruthy = require( './index' );
const x = zeros( [ 10 ], {
'dtype': 'generic'
});
const fromIndex = scalar2ndarray( 0, {
'dtype': 'generic'
});

glastIndexOfTruthy(); // $ExpectError
glastIndexOfTruthy( [ x ], {} ); // $ExpectError
glastIndexOfTruthy( [ x, fromIndex ], {} ); // $ExpectError
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
'use strict';

var discreteUniform = require( '@stdlib/random/discrete-uniform' );
var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var glastIndexOfTruthy = require( './../lib' );

Expand All @@ -29,5 +30,9 @@ var opts = {
var x = discreteUniform( [ 10 ], 0, 5, opts );
console.log( ndarray2array( x ) );

var idx = glastIndexOfTruthy( [ x ] );
var fromIndex = scalar2ndarray( 9, {
'dtype': 'generic'
});

var idx = glastIndexOfTruthy( [ x, fromIndex ] );
console.log( idx );
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,17 @@
* @module @stdlib/blas/ext/base/ndarray/glast-index-of-truthy
*
* @example
* var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
* var vector = require( '@stdlib/ndarray/vector/ctor' );
* var glastIndexOfTruthy = require( '@stdlib/blas/ext/base/ndarray/glast-index-of-truthy' );
*
* var x = vector( [ 0.0, 3.0, 0.0, 2.0 ], 'generic' );
*
* var v = glastIndexOfTruthy( [ x ] );
* var fromIndex = scalar2ndarray( 3, {
* 'dtype': 'generic'
* });
*
* var v = glastIndexOfTruthy( [ x, fromIndex ] );
* // returns 3
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@

// MODULES //

var ndarraylike2scalar = require( '@stdlib/ndarray/base/ndarraylike2scalar' );
var numelDimension = require( '@stdlib/ndarray/base/numel-dimension' );
var clipUpperIndex = require( '@stdlib/ndarray/base/clip-upper-index' );
var getStride = require( '@stdlib/ndarray/base/stride' );
var getOffset = require( '@stdlib/ndarray/base/offset' );
var getData = require( '@stdlib/ndarray/base/data-buffer' );
Expand All @@ -37,21 +39,38 @@ var strided = require( '@stdlib/blas/ext/base/glast-index-of-truthy' ).ndarray;
* - The function expects the following ndarrays:
*
* - a one-dimensional input ndarray.
* - a zero-dimensional ndarray containing the index from which to begin searching.
*
* @param {ArrayLikeObject<Object>} arrays - array-like object containing ndarrays
* @returns {integer} index
*
* @example
* var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
* var vector = require( '@stdlib/ndarray/vector/ctor' );
*
* var x = vector( [ 0.0, 3.0, 0.0, 2.0 ], 'generic' );
*
* var v = glastIndexOfTruthy( [ x ] );
* var fromIndex = scalar2ndarray( 3, {
* 'dtype': 'generic'
* });
*
* var v = glastIndexOfTruthy( [ x, fromIndex ] );
* // returns 3
*/
function glastIndexOfTruthy( arrays ) {
var x = arrays[ 0 ];
return strided( numelDimension( x, 0 ), getData( x ), getStride( x, 0 ), getOffset( x ) ); // eslint-disable-line max-len
var fromIndex;
var N;
var x;

x = arrays[ 0 ];
fromIndex = ndarraylike2scalar( arrays[ 1 ] );

N = numelDimension( x, 0 );
fromIndex = clipUpperIndex( fromIndex, ( fromIndex < 0 ) ? N : N-1 );
if ( fromIndex < 0 ) {
return -1;
}
return strided( fromIndex+1, getData( x ), getStride( x, 0 ), getOffset( x ) ); // eslint-disable-line max-len
}


Expand Down
Loading