Distance

function [ D] = Distance( X0,Y0,X,Y )
%UNTITLED3 Summary of this function goes here
%   Detailed explanation goes here
 D = sqrt((X-X0)^2+(Y-Y0)^2);

end