Effacer les filtres
Effacer les filtres

normalization codes for database?

2 vues (au cours des 30 derniers jours)
mina
mina le 2 Mar 2013
hi What do the following codes ؟
function kvalue=compute_kvalue(data)
v=6.1;
var = (max(data)-min(data))'(max(data)-min(data))/v;
kvalue=zeros(size(data,1),size(data,1),size(data,2));
for i=1:size(data,1)
for j=i:size(data,1)
kvalue(i,j,:)=exp(-(data(i,:)-data(j,:)'(data(i,:)-data(j,:))./var);
kvalue(j,i,:)=kvalue(i,j,:);
end
end
end
its looks that do normalization but How does it work?
  1 commentaire
ChristianW
ChristianW le 2 Mar 2013
Edit the code, syntax |)'(| isn't possible.

Connectez-vous pour commenter.

Réponses (0)

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by