代码搜索:Distance

找到约 8,736 项符合「Distance」的源代码

代码结果 8,736
www.eeworm.com/read/203480/15357980

m distance2.m

%DISTANCE : perform spectral distortion measure. %Function: y=distance2(a,b,xa,zi,method) returns the distortion measure between % two frames of speech data. % %INPUT: a == LPC coeffic
www.eeworm.com/read/108818/15574885

c sr_distance.c

/*--------------------------- Commande MegaWave -----------------------------*/ /* mwcommand name = {sr_distance}; version = {"1.3"}; author = {"Thierry Cohignac, Lionel Moisan"}; function
www.eeworm.com/read/108818/15574998

c ll_distance.c

/*--------------------------------------------------------------------------*/ /* mwcommand name = {ll_distance}; version={"1.1"}; author={"Frederic Guichard, Lionel Moisan"}; function={"Compute signe
www.eeworm.com/read/101168/15842424

html distance_type.html

www.eeworm.com/read/289743/8530011

m l2_distance.m

function d = L2_distance(a, b) % L2_DISTANCE - computes Euclidean distance matrix % % E = L2_distance(A,B) % % A - (DxM) matrix % B - (DxN) matrix % % Returns: % E - (MxN) Euclidea
www.eeworm.com/read/286440/8763846

m l2_distance.m

function d = L2_distance(a,b,df) % L2_DISTANCE - computes Euclidean distance matrix % % E = L2_distance(A,B) % % A - (DxM) matrix % B - (DxN) matrix % df = 1, force diagonals to be zero; 0 (
www.eeworm.com/read/386060/8766594

m point_to_space_distance.m

function pointToSpaceDistance = point_to_space_distance(samples, subspaceBasis) % function pointToSpaceDistance = point_to_space_distance(samples, subspaceBasis) % % Computes the Euclidean distance
www.eeworm.com/read/282683/9074236

m l2_distance.m

function d = L2_distance(a,b,df) % L2_DISTANCE - computes Euclidean distance matrix % % E = L2_distance(A,B) % % A - (DxM) matrix % B - (DxN) matrix % df = 1, force diagonals to be ze
www.eeworm.com/read/281599/9147075

m noise_distance_matrix.m

function D=noise_distance_matrix(X,r) if r==1 D=zeros(size(X,1),size(X,1)); for i=1:size(X,1) for j=i+1:size(X,1) D(i,j)=norm([X(i,1)-X(j,1);X(i,2)-X(j,2)])+normrnd(0,sqrt(2.5e-3
www.eeworm.com/read/281599/9147088

p l2_distance.p