piecewise-function

1.0.0 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i piecewise-function

Weekly Downloads

0

Version

1.0.0

License

ISC

Unpacked Size

2.18 kB

Total Files

5

Last publish

Collaborators

  • gpiffault