Chessboard , Euclidean and City Block distance simplest codes(functions) for all order of matrix that i can understand as i am student and at start of this language.

22 次查看(过去 30 天)
Chessboard , Euclidean and City Block distance simplest codes(functions) for all order of matrix that i can understand as i am student and at start of this language. its request to make a function for these distances in matlab

回答(2 个)

Jon
Jon 2020-2-10
编辑:Jon 2020-2-10
Please give it a try, just get started see what problems you have and where you are stuck, and then ask about these issues.
Just to get you started, if for example you had two points in an n dimensional space you could define the coordinates of those two points with a vector x1 and another x2 as MATLAB variables, each one would be an n row by 1 column matrix (i.e. a length n vector). To compute the Euclidean distance between them you could just evaluate:
dist = sqrt( (x2 - x1).^2) % note .^2 gives element by element square
For example for the familiar 3 dimensional case
x1 = [ 2;3;8]; % column vector defining point with coordinates 2,3,8
x2 = [-2; 9; 7]; % column vector defining point with coordinate -2,9,7
% compute distance
dist = sqrt(sum((x2 - x1).^2))

Image Analyst
Image Analyst 2020-2-10
There is a function bwdist() that computes distances of different definitions. What data are you starting with? Like two (x,y) points? Or something else?

类别

Help CenterFile Exchange 中查找有关 Dynamic System Models 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by