New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

piecewise-function

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

piecewise-function

A piecewise function factory

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

piecewise-function

A piecewise function factory.

The first argument is the x values and the second the y values. It will project out of bound values on the first/last piece.

var Piecewise = require('piecewise-function')

relu = Piecewise([-1, 0, 1], [0, 0, 1])
relu(-1.5)  // 0
relu(-0.5)  // 0
relu(0.5)   // 0.5
relu(1.5)   // 1.5

Keywords

piecewise

FAQs

Package last updated on 09 Mar 2018

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