Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

spectrum-generator

Package Overview
Dependencies
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

spectrum-generator

generate a spectrum from discrete peaks

  • 0.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.4K
increased by22.21%
Maintainers
1
Weekly downloads
 
Created
Source

spectrum-generator

NPM version build status Test coverage npm download

generate a spectrum from discrete peaks.

Installation

$ npm install --save spectrum-generator

Usage

The spectrum generator takes an array of discrete peaks (value and intensity) and generates peaks with a gaussian distribution.

generateSpectrum

import {generateSpectrum} from 'spectrum-generator';

const peaks = [[4, 10], [20, 30], [236, 1], [569, 76]];
const spectrum = generateSpectrum(peaks, {pointsPerUnit: 1});

class SpectrumGenerator

import {SpectrumGenerator} from 'spectrum-generator';

const generator = new SpectrumGenerator();
generator.addPeak([5, 20]);
generator.addPeak([30, 56]);
generator.addPeaks([[40, 12], [10, 1]]);
const spectrum = generator.getSpectrum();

generator.reset();
generator.addPeak([10, 50]);
const otherSpectrum = generator.getSpectrum();

API Documentation

License

MIT

FAQs

Package last updated on 09 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc