GithubHelp home page GithubHelp logo

na-hermite-interpolation's Introduction

Hermite interpolation

Usage example

Live Demo

// If not executing on node.js and want to listen to events,
// use an EventEmitter library, e.g., https://github.com/asyncly/EventEmitter2
HermiteInterpolation.setEventEmitter(EventEmitter2);

var hermite = new HermiteInterpolation();

// Use bignumber.js to create numbers: https://github.com/MikeMcl/bignumber.js/
hermite.data = [
  {x: new BigNumber(4) , y: new BigNumber(5), d: new BigNumber(3)},
  {x: new BigNumber(15), y: new BigNumber(1), d: new BigNumber(4)}
];

// Divided differences
hermite.on('step', function(data) {
  console.log('f[x_' + data.i + ',...,x_' + data.j + '] = ' + data.result);
});

var coefficients = hermite.calculatePolynomialCoefficients();
console.log(coefficients); // => [...]

var polynomial = coefficients.map(function(coeff, i) {
  return coeff + ' x^' + i;
}).join(' + ');

console.log(polynomial); // => "a x^0 + b x^1 + c x^2 + d x^3"

na-hermite-interpolation's People

Contributors

tfoxy avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.