Problem 2199. Pairwise Euclidean Distance

Given two matrices A,B of dimensions NxK and NxL respectively, calculate the pairwise euclidean distance of all vectors (columns). The result should be a matrix of dimensions KxL which contains all possible pairs of distances.

Example:

 pairEuc([1 2; 3 4]', [5 6; 7 8; 9 10]')
 ans =
    5.6569    8.4853   11.3137
    2.8284    5.6569    8.4853

Solution Stats

54.37% Correct | 45.63% Incorrect
Last Solution submitted on Mar 26, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers49

Suggested Problems

Problem Tags

Community Treasure Hunt

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

Start Hunting!