This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

simple-linear-interpolation
TypeScript icon, indicating that this package has built-in type declarations

1.0.6 • Public • Published

Build Status Coverage Status NPM Version
Dependecy Status
DEV Dependency Status

Simple Linear Interpolation

A simple interpolation module that construct new data points within the range of a discrete set of known data points. Linear Interpolation EXAMPLE.

Installation

You can install this package using NPM:

npm i simple-linear-interpolation --save

How use

Simple example JavaScript / TypeScript:

import { linearInterpolation } from "simple-linear-interpolation";

const points = [{ x: 1, y: 1}, { x: 2, y: 2 }];
const calculate = linearInterpolation(points);

calculate({ x: 1.5 }); // y -> 1.5
calculate({ y: 1.5 }); // x -> 1.5

Unit testing

For run unit tests, use:

npm run test

All unit test report you can find at report/ folder.

For run test at watch mode, use:

npm run test:dev

Linting

For check eslint rules, use:

npm run lint

For auto fix all eslint bugs, use:

npm run lint:fix

License

Except where noted otherwise, files are licensed under the MIT License.

Information

Package Sidebar

Install

npm i simple-linear-interpolation

Weekly Downloads

838

Version

1.0.6

License

ISC

Unpacked Size

12.3 kB

Total Files

18

Last publish

Collaborators

  • dpaduchak