Minkowski sum of two sets

8 views (last 30 days)
Ashish
Ashish on 10 Dec 2022
Commented: Ashish on 11 Dec 2022
Is there a function to calculate minkowski sum of two sets? basically an optimal way to calculate combinations of all possible vertices from the two sets.
Thanks to John D'Errico, I have a way to calculate the Minkowski Sum of polygons. I have attached a link below for reference.
Could someone help with implementing the same for two sets of points.
  2 Comments
Jan
Jan on 10 Dec 2022
What do you call "a set of points"? Which type and size of variable is it?
Ashish
Ashish on 11 Dec 2022
My apologies for the lack of clarity, a set of points would be a set of n-dimensonal points of floating type

Sign in to comment.

Accepted Answer

Jan
Jan on 10 Dec 2022
Edited: Jan on 10 Dec 2022
Guessing the type of the input:
A = rand(5, 2); % "Points" as x and y coordinates
B = rand(6, 2);
sA = size(A);
sB = size(B);
AB = reshape(A, [1, sA]) + reshape(B, [sB(1), 1, sB(2)]);
AB = reshape(AB, [], 2);
  1 Comment
Ashish
Ashish on 11 Dec 2022
Thank you so much!
I will write back incase of any further queries

Sign in to comment.

More Answers (0)

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!