1.0.0 • Published 7 years ago

unwrap-phases v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

unwrap-phases

Unwrap phase data

npm install unwrap-phases

var unwrap = require('unwrap-phases')
unwrap(phases) // in-place unwrapping for maximum efficiency

Usage

unwrap(input, output = input) ⇒ Array

Returns: Array - the unrapped phase data

ParamTypeDescription
inputArrayphase data
outputArray(Optional) the output array to store the unrapped phase data. If not provided, an in-place modification is performed. If true is passed as an argument, a new array is created.

Example

const unwrap = require('unwrap-phases')
// given a phase data of a spectrum...
unwrap(phases) // in-place unwrapping
const unwrapped = unwrap(phases, true) // new output array

License

MIT License