Problem 1113. Create array of all Distances between two Sets of Points
This Challenge is a subsection of Martian Pranks based on Tim's efficient Distance calculation between sets of points.
Given Point Set vectors Start and Final determine the distance between each Start and each Final Point.
Input: Start(m,2), Final(m,2)
Output: Distances (m,m)
Example:
Input: [0 0;0 1], [2 0;3 3]
Output: [2 4.24; 2.24 3.61]
TestSuite will perform rounding
Hint: Tags
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers43
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15680 Solvers
-
Back to basics 25 - Valid variable names
328 Solvers
-
Output any real number that is neither positive nor negative
401 Solvers
-
Create matrix of replicated elements
386 Solvers
-
Sum of odd numbers in a matrix
598 Solvers
More from this Author308
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!