array-xy-max-y

0.1.0 • Public • Published

array-xy-max-y

NPM version npm download

Find the maximum ordinate value in a range of abscissas.

Installation

$ npm install --save array-xy-max-y

Usage

import maxY from 'array-xy-max-y';
 
const points = {
    x: [1, 2, 3, 4, 5, 6],
    y: [10, 2, 8, 4, 5, 20]
};
const options = {
    from: {index: 1},
    to: {value: 5}
};
const result = maxY(points, options);
 
/* result -> {
    index: 2,
    value: 8
*/

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i array-xy-max-y

Weekly Downloads

1

Version

0.1.0

License

MIT

Last publish

Collaborators

  • maasencioh