88 lines
3.1 KiB
JavaScript
88 lines
3.1 KiB
JavaScript
|
/**
|
||
|
* @license Apache-2.0
|
||
|
*
|
||
|
* Copyright (c) 2018 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 isNonNegativeIntegerArray = require( '@stdlib/assert/is-nonnegative-integer-array' ).primitives;
|
||
|
var isInteger = require( '@stdlib/assert/is-integer' ).isPrimitive;
|
||
|
var shape2strides = require( './../../base/shape2strides' );
|
||
|
var getSubscripts = require( './../../base/ind2sub' );
|
||
|
var defaults = require( './defaults.json' );
|
||
|
var validate = require( './validate.js' );
|
||
|
|
||
|
|
||
|
// MAIN //
|
||
|
|
||
|
/**
|
||
|
* Converts a linear index to an array of subscripts.
|
||
|
*
|
||
|
* ## Notes
|
||
|
*
|
||
|
* - The function accepts the following "modes":
|
||
|
*
|
||
|
* - `throw`: throws an error when a linear index exceeds array dimensions.
|
||
|
* - `wrap`: wrap around a linear index exceeding array dimensions using modulo arithmetic.
|
||
|
* - `clamp`: set a linear index exceeding array dimensions to either `0` (minimum linear index) or the maximum linear index.
|
||
|
*
|
||
|
*
|
||
|
* @param {NonNegativeIntegerArray} shape - array shape
|
||
|
* @param {integer} idx - linear index
|
||
|
* @param {Options} [options] - function options
|
||
|
* @param {string} [options.mode="throw"] - specifies how to handle a linear index which exceeds array dimensions
|
||
|
* @param {string} [options.order="row-major"] - specifies whether an array is row-major (C-style) or column-major (Fortran-style)
|
||
|
* @throws {TypeError} shape argument must be an array-like object containing nonnegative integers
|
||
|
* @throws {TypeError} linear index argument must be integer valued
|
||
|
* @throws {TypeError} options argument must be an object
|
||
|
* @throws {TypeError} must provide valid options
|
||
|
* @throws {RangeError} must provide a linear index which does not exceed array dimensions
|
||
|
* @returns {NonNegativeIntegerArray} subscripts
|
||
|
*
|
||
|
* @example
|
||
|
* var s = ind2sub( [ 3, 3, 3 ], 17 );
|
||
|
* // returns [ 1, 2, 2 ]
|
||
|
*/
|
||
|
function ind2sub( shape, idx, options ) {
|
||
|
var opts;
|
||
|
var err;
|
||
|
|
||
|
opts = {};
|
||
|
opts.mode = defaults.mode;
|
||
|
opts.order = defaults.order;
|
||
|
if ( arguments.length > 2 ) {
|
||
|
err = validate( opts, options );
|
||
|
if ( err ) {
|
||
|
throw err;
|
||
|
}
|
||
|
}
|
||
|
if ( !isNonNegativeIntegerArray( shape ) ) {
|
||
|
throw new TypeError( 'invalid argument. Shape argument must be an array-like object containing nonnegative integers. Value: `' + shape + '`.' );
|
||
|
}
|
||
|
if ( !isInteger( idx ) ) {
|
||
|
throw new TypeError( 'invalid argument. Linear index argument must be integer valued. Value: `' + idx + '`.' );
|
||
|
}
|
||
|
// Note: strides are positive, so offset is always zero
|
||
|
return getSubscripts( shape, shape2strides( shape, opts.order ), 0, opts.order, idx, opts.mode ); // eslint-disable-line max-len
|
||
|
}
|
||
|
|
||
|
|
||
|
// EXPORTS //
|
||
|
|
||
|
module.exports = ind2sub;
|