ml-array-xy-integrate

Integrates y values. The x array has to be ordered and increasing.

Usage no npm install needed!

<script type="module">
  import mlArrayXyIntegrate from 'https://cdn.skypack.dev/ml-array-xy-integrate';
</script>

README

arrayxy-uniquex

NPM version build status David deps npm download

Function to sum the y values if the x values are equals. The x array has to be ordered. It is an in place modification

Installation

npm i ml-arrayxy-integrate

const uniqueX=require('ml-arrayxy-integrate');

  var x = [0, 0, 1, 2, 3, 3];
  var y = [1, 2, 3, 4, 5, 6];
  uniqueX({ x, y });

  // x = [0, 1, 2, 3]
  // y = [3, 3, 4, 11]

API Documentation

License

MIT