npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ind2sub

v2.0.0

Published

Convert a linear index into multi-dimensional array subscripts

Downloads

2,527

Readme

ind2sub

Convert a linear index, and an array of sizes, to an array of subscripts that index into a multi-dimensional array of size sizes in the Fortran (column-major) convention (first index varies fastest).

This is a JavaScript (TypeScript actually) library to mimic the behavior of the eponymous function in Julia and Matlab. Numpy calls this unravel_index, though it's fancier, since it can handle C-style (row-major) convention too.

Install & usage

Node.js At the command line in your Node.js app, run the following:

$ npm add --save ind2sub

This will install this module in your app's node_modules/ directory. Then in Node, you can use it:

const ind2sub = require('ind2sub').ind2sub;
console.log(ind2sub([2, 3, 4], 0)) // prints [0, 0, 0]
console.log(ind2sub([2, 3, 4], 1)) // prints [1, 0, 0]
console.log(ind2sub([2, 3, 4], 2)) // prints [0, 1, 0]
console.log(ind2sub([2, 3, 4], 22)) // prints [0, 2, 3]
console.log(ind2sub([2, 3, 4], 23)) // prints [1, 2, 3]

If your project uses TypeScript also, you can use the following import statement:

import {ind2sub} from 'ind2sub';
console.log(ind2sub([2, 3, 4], 23)) // etc.

Browser If you want to load this as a global variable in the browser, download ind2sub-browser.js and load it into your HTML with

<script src="ind2sub-browser.js"></script>

Then any subsequently-loaded JavaScript code in your webapp can invoke this as

ind2sub.ind2sub([2, 3, 4], 22); // `Array [ 0, 2, 3 ]` in Firefox

API

ind2sub

// number[] -> number -> number[]
ind2sub(sizes, index)

Given some conceptual N-dimensional array with sizes sizes (an N-element array), and a linear index into that array (in Fortran, column-major, order), this returns another N-element array of subscripts needed to reach that index. Examples were given above.

optimizeInd2sub

// number[] -> (number -> number[])
optimizeInd2sub(sizes)

A higher-order function. Given just the N-element sizes array from above, this returns another function, which takes one index argument, that in turn yields the final N-element subscripts array. This function will cache an intermediate array that depends on sizes, to speed up repeated calls to ind2sub for the same array sizes.

Example, in Node.js:

const { ind2sub, optimizeInd2sub } = require('ind2sub');
const sizes = [ 2, 3, 4 ];
const f = optimizeInd2sub(sizes);
console.log(ind2sub(sizes, 5), f(5)) // [ 1, 2, 0 ], [ 1, 2, 0 ]
console.log(ind2sub(sizes, 15), f(15)) // [ 1, 1, 2 ], [ 1, 1, 2 ]
console.log(ind2sub(sizes, 22), f(22)) // [ 0, 2, 3 ], [ 0, 2, 3 ]

A loop over large sizes that uses the optimized function might be 10x faster than the equivalent loop with plain ind2sub calls.

Development

Add your TypeScript code to index.ts. Run

$ npm test

to make sure you didn't break anything. If you added new functionality, add a test in tests/.

Run clang-format to prettify the TypeScript:

$ clang-format -i index.ts tests/*js

To package it all up, run the following, which invokes tsc, the TypeScript compiler which spits out index.js, and Browserify, to prepare a browser-ready file in ind2sub-browser.js:

$ npm run build

How it works

The mental image I have is a long linear chunk of memory: 0 1 2 3 4 5 6 7 8 9 10 11 ….

Now.

If the first dimension, which varies the fastest in column-major/Fortran ordering, has size 2, then you can convince yourself pretty easily that the first subscript should be linear index % 2:

| 0 | 1 | |---|---| | 0 | 1 | | 2 | 3 | | 4 | 5 | | ⋮ | ⋮ |

Say the second dimension has size 3. This means that the second subscript increments only after iterating through 2-tuples in the linear array: the second subscript is:

| 0 | 1 | 2 | |-----|-----|-----| | 0,1 | 2,3 | 4,5 | | 6,7 | 8,9 | 10,11 | | ⋮ | ⋮ | ⋮ |

So the second subscript should be (linear index) / 2 % 3. Note here how each table cell contains two values (for each slice of the first dimension) while each cell in the first table (for the first dimension) had only one element (the "zeroth" dimension?).

The third subscript increments after 2 * 3 elements of the linear array. Drawing the table above in your mind, you can see that the third subscript is (linear index) / 6 % (size of third dimension).

Basically the formula in pseudocode is ind2sub(size, linear index)[dimension] = (linear index) / PROD(size.slice(0, dimension)) % size[dimension], where PROD([]) = 1 and PROD(arr) = arr[0] * arr[1] * ....

That's basically the logic, encoded in two lines of TypeScript, that sits in the middle of this library.