Unwrap phase data
var unwrap = require('unwrap-phases')
unwrap(phases) // in-place unwrapping for maximum efficiency
Returns: Array
- the unrapped phase data
Param | Type | Description |
---|---|---|
input | Array |
phase data |
output | Array |
(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
MIT License