dist_t.m
上传用户:doryuen
上传日期:2013-10-30
资源大小:23k
文件大小:0k
源码类别:

通讯/手机编程

开发平台:

Matlab

  1. function distn = dist_t(x,y)
  2. % This function calculates distance between two points
  3. % x and y is a 1 by 2 matrix which containes coordinates of two points
  4. % Example: x (12, 26), y (5, 0);
  5. distn = sqrt((x(1) - y(1))^2 + (x(2) - y(2))^2);