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

276 Solutions

176 Solvers

Last Solution submitted on Jan 01, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...

Problem Recent Solvers176

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!