MATLAB: Can you please help me haw to write a code MATLAB for this equation

distance

SSD= = √(∑_(i=1)^n▒〖(xi-yi)2〗)

Best Answer

SSD = sqrt(sum((x-y).^2));
Related Question