findNlargest

Finds the N largest values in the input. Very fast.
280 Downloads
Updated 16 Jan 2013

View License

LARGEVALUES = findNlargest(INPUTVALUES, N)

Finds the N largest values in INPUTVALUES and outputs them to LARGEVALUES

[LARGEVALUES, INDEX] = findNlargest(INPUTVALUES, N)

INDEX is the index of the returned values in the original INPUTVALUES

Example:

L = findNlargest([2 7 7 6 -1],3)

L =

6
7
7

Written in c, so the operation is fast. Type "mex findNlargest.c" in matlab before use.

You might need a free compiler if it was not installed with your matlab:
http://www.mathworks.com/support/compilers/R2012b/win64.html

Cite As

Mattias Karlsson (2024). findNlargest (https://www.mathworks.com/matlabcentral/fileexchange/39877-findnlargest), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R14
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Linear Algebra in Help Center and MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

findNlargest/

Version Published Release Notes
1.0.0.0