代码搜索:Nearest
找到约 1,596 项符合「Nearest」的源代码
代码结果 1,596
www.eeworm.com/read/486829/6530464
m nearest_point.m
%skyhawk#flyinghawk
%计算最后一个相点的最近相点的位置及最短距离
function [idx,min_d,idx1,min_d1]=nearest_point(tau,m,whlsj,whlsl,P)
%参数说明:
%输入:m - 嵌入维数, whlsj - 待分析数据, whlsl - 待分析的数据个数, P - 平均循环周期
% idx - 最后一个相点
www.eeworm.com/read/405069/11472162
m nearest_neighbor.m
function test_targets = Nearest_Neighbor(train_patterns, train_targets, test_patterns, Knn)
% Classify using the Nearest neighbor algorithm
% Inputs:
% train_patterns - Train patterns
% train_t
www.eeworm.com/read/338860/12275767
exe false_nearest.exe
www.eeworm.com/read/337845/12336856
m nearest_point.m
%skyhawk#flyinghawk
%计算最后一个相点的最近相点的位置及最短距离
function [idx,min_d,idx1,min_d1]=nearest_point(m,whlsj,whlsl,P)
%参数说明:
%输入:m - 嵌入维数, whlsj - 待分析数据, whlsl - 待分析的数据个数, P - 平均循环周期
% idx - 最后一个相点的最近相
www.eeworm.com/read/250762/12385782
exe false_nearest.exe
www.eeworm.com/read/131588/14136155
m nearest_neighbor.m
function D = Nearest_Neighbor(train_features, train_targets, Knn, region)
% Classify using the Nearest neighbor algorithm
% Inputs:
% features - Train features
% targets - Train targets
% Knn
www.eeworm.com/read/129915/14217601
m nearest_neighbor.m
function D = Nearest_Neighbor(train_features, train_targets, Knn, region)
% Classify using the Nearest neighbor algorithm
% Inputs:
% features - Train features
% targets - Train targets
% Knn
www.eeworm.com/read/129868/14220581
m nearest_point.m
%skyhawk#flyinghawk
%计算最后一个相点的最近相点的位置及最短距离
function [idx,min_d,idx1,min_d1]=nearest_point(m,whlsj,whlsl,P)
%参数说明:
%输入:m - 嵌入维数, whlsj - 待分析数据, whlsl - 待分析的数据个数, P - 平均循环周期
% idx - 最后一个相点的最近相
www.eeworm.com/read/487231/1239319
pas nearest2.pas
Program The_Closest_Pair_Problem;
Const
Maxn=10000;
Maxnum=1e+20;
Type
TPoint=Record
x,y:Real;
End;
TArray=Array [1..Maxn] of Longint;
Var
p:Array [1..Maxn] of TPoint;