• 大小: 4KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-05
  • 语言: Matlab
  • 标签: Knn  Search  

资源简介

三维K临域的快速搜索算法,matlab代码。

资源截图

代码片段和文件信息

#include “mex.h“
#include “BruteSearchTranspose.cpp“






// In Matlab la funzione deve essere idc=NNSearch(xypkptrtree)

/* the gateway function */
void mexFunction( int nlhs mxArray *plhs[]
int nrhs   mxArray *prhs[])
{
    
    double       *p;//reference points
    double       *qp;//query points
    double* results;
    char*        String;//Input String
    int String_Leng;//length of the input String
    int NNqdimij;
    double* distances;//distances for k-neighbors
    int* idck;//k-neighbors
    int idc;//nearest neighbor
    double*k;
    int kint;
    double* r;
    double* D;//Output distance matrix
    double mindist;
    
    //Errors Check
    
    if (nlhs>2)
    {
        mexErrMsgTxt(“Too many outputs“);
    }
    
    if (

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        6864  2009-02-08 16:40  BruteSearchMex.cpp
     文件        6014  2009-02-08 16:55  BruteSearchTranspose.cpp
     文件        1977  2009-02-09 17:33  TestBruteSearch.m

评论

共有 条评论