$ npm install ndarray-translate-fftTranslates an array using sinc interpolation. For some things this makes sense, but for other signals this may not be what you want. (For example, you can get bigger values or negative stuff in your signal using this method). If you want to use bilinear interpolation, check out ndarray-warp, or if all your coordinates are integers try ndarray-translate instead.
Here is a simple example showing how to warp with 0-padding boundary conditions:
var baboon = require("luminance")(require('baboon-image'))
var translate = require("../translate.js")
translate(baboon, [100, 180])
require("save-pixels")(baboon, "png").pipe(process.stdout)

ndarray-fft can also handle periodic boundary conditions by replacing the translate line with the following:
var baboon = require("luminance")(require('baboon-image'))
var translate = require("../translate.js")
translate.wrap(baboon, [100, 180])
require("save-pixels")(baboon, "png").pipe(process.stdout)

Install using npm:
npm install ndarray-translate-fft
var translate = require("ndarray-translate-fft")
translate(array, shift)Translates array by shift amount in place using sinc interpolation with 0-boundary conditions.
array is an ndarray to translate (get mutated)shift is an array of numbers indicated the amount to shift by (can be a fractional number), should have the same length as array.shapeReturns array
Note that due to not using an infinite amount of padding (and/or using additional corrections), the zero-padded result might not be completely accurate (but since in this case you are shifting out data anyway...).
translate.wrap(array, shift)Translates an array by shift amount in place using periodic boundary conditions. This is exactly recoverable.
array is the array to translateshift is the amount to shift byReturns array
ndarray-translate-fft:ndarray-translate-fft(c) 2013 Mikola Lysenko. MIT License