|
|
| File Information |
| Description |
NEARESTPOINT - find the nearest value in another vector
IND = NEARESTPOINT(X,Y) finds the value in Y which is the closest to each value in X, so that abs(Xi-Yk) => abs(Xi-Yj) when k is not equal to j.
IND contains the indices of each of these points.
Example:
NEARESTPOINT([1 4 12],[0 3]) -> [1 2 2]
[IND,D] = ... also returns the absolute distances in D,that is D == abs(X - Y(IND))
NEARESTPOINT(X, Y, M) specifies the operation mode M:
1) 'nearest' : default, same as above
2) 'previous': find the points in Y that just precedes a point in X
NEARESTPOINT([1 4 12],[0 3],'previous') -> [1 1 1]
3) 'next' : find the points in Y that directly follow a point in X
NEARESTPOINT([1 4 12],[0 3],'next') -> [2 NaN NaN]
If there is no previous or next point in Y for a point X(i), IND(i)
will be NaN.
X and Y may be unsorted.
This function is quite fast, and especially suited for large arrays with
time data. For instance, X and Y may be the times of two separate events, like simple and complex spike data of a neurophysiological study.
Run NEARESTPOINT('test') to see a test of it's running time |
| Acknowledgements |
This submission has inspired the following:
Efficient K-Nearest Neighbor Search using JIT, IPDM: Inter-Point Distance Matrix
|
| MATLAB release |
MATLAB 6.5 (R13)
|
|
Tags for This File
|
| Everyone's Tags |
|
| Tags I've Applied |
|
| Add New Tags |
Please login to tag files.
|
| Comments and Ratings (10) |
| 04 Nov 2005 |
urs (us) schwarz
|
|
|
| 04 Nov 2005 |
Jos van der Geest
|
|
|
| 05 Nov 2005 |
urs (us) schwarz
|
|
|
| 01 Dec 2005 |
John D'Errico
|
|
|
| 28 Feb 2006 |
David Wagener
|
|
|
| 19 Sep 2006 |
Scott Burnside
|
|
|
| 26 Sep 2006 |
Drew Saunders
|
|
|
| 12 Apr 2007 |
Eduardo Gonzalez
|
|
|
| 27 Jun 2007 |
Nick Clark
|
|
|
| 23 Feb 2009 |
Michael Ashby
|
|
|
| Updates |
| 01 May 2006 |
corrected error when using 'prev' option |
|
MATLAB Central Terms of Use
NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for
all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content.
Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available
via MATLAB Central.
Read the complete Terms prior to use.
Contact us at files@mathworks.com