Posted By


eiger_824 on 11/11/15

Tagged


Statistics


Viewed 205 times
Favorited by 0 user(s)

StandardEuclideanDistance


/ Published in: MatLab
Save to your folder(s)

aasdfasdfas


Copy this code and paste it in your HTML
  1. function [dist] = StandardEuclideanDistance(A,B)
  2. dist = 0;
  3. for i=1:length(A)
  4. dist = dist+A(i)*B(i);
  5. end
  6. end

URL: asdfasdfsa

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.