Problem 264. Find the "ordinary" or Euclidean distance between A and Z

A, B and Z define three points in the 3D Euclidean space of the form: A = [x1;y1;0]; B = [x2;y2;0]; Z = [x2;y2;z];

Find the Euclidean distance between A and Z where

A = [1,0,0]; B = [5,3,0]; Z=[5,3,3];
>> euclidean(A,B,Z)
ans = 5.830951894845301

Your function should be able to handle 1 x 3 vectors or 3 x 1 vectors for all input parameters: A,B and Z. Z need not be 1 x 3 if A and B are. So 1x3,1x3,3x1 inputs, corresponding A, B and Z, are possible function input vectors.

HINT: use the Pythagorean formula.

Solution Stats

70.87% Correct | 29.13% Incorrect
Last Solution submitted on Aug 29, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers158

Suggested Problems

More from this Author16

Community Treasure Hunt

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

Start Hunting!