UNPKG

frequencyjs

Version:
24 lines (17 loc) 371 B
/** * Continous wavelet transform * * Author: Maximilian Klein * Based on: https://github.com/aaren/wavelets */ function cwt(signal, options){ return { /** convert a signal into a spectrum */ toSpectrum: function(){ }, /** convert a spectrum into a signal */ toSignal: function(){ } } } module.exports = cwt();