Package Exports
- ml-spectra-processing
- ml-spectra-processing/lib-esm/index.js
- ml-spectra-processing/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ml-spectra-processing) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ml-spectra-processing
Various functions to process spectra. Those are pure
functions.
They are sorted in various categories:
- matrix: functions on ml-matrix instances (or array or array)
- x: functions that apply on a 1D array
- xy: functions that apply on an object
{x: [], y:[]}
- xyArray: functions that apply on an array of objects
{x: [], y:[]}
- xyObject: functions that apply on an array of point
[{x,y}]
- xreim: functions that apply on an object
{x: [], re:[], im:[]}
- reim: functions that apply on an object
{re: [], im:[]}
- zone: functions that apply on a zone
{from,to}
- zones: functions that apply on an array of zone
[{from,to}]
The name of the functions start with the first argument on which they apply.
Installation
$ npm i ml-spectra-processing
Usage
import { xAdd } from 'ml-spectra-processing';
const array = [1, 2, 3];
const result = xAdd(array, 5);
console.log(result);