We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Find indices of maximum values.
Similar: searchMaximumValues, searchMinimumValues.
function searchMaximumValues(x, n, fc, fm) // x: an array // n: number of values // fc: compare function (a, b) // fm: map function (v, i, x)
const xarray = require('extra-array'); var x = [4, 2, 1, 3, 5]; xarray.searchMaximumValues(x, 2); // → [ 4, 0 ] xarray.searchMaximumValues(x, 3); // → [ 4, 0, 3 ]